mirror of
https://github.com/rdkit/rdkit.git
synced 2026-06-04 21:54:27 +08:00
* remove all of the "from __future__" imports * remove the first batch of rdkit.six imports/uses * next step of rdkit.six removal * removing xrange, range, and some maps * next round of removals * next round of cleanups * fix inchi test * last bits of "from rdkit.six" are gone * and the last of the six stuff is gone * strange importlib problem
9 lines
127 B
Python
Executable File
9 lines
127 B
Python
Executable File
|
|
import pyRXP
|
|
import sys
|
|
|
|
parser = pyRXP.Parser()
|
|
res = parser.parse(open(sys.argv[1], 'r').read())
|
|
if res:
|
|
print('SUCCESS')
|