mirror of
https://github.com/rdkit/rdkit.git
synced 2026-06-07 22:44:25 +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
41 lines
838 B
Python
Executable File
41 lines
838 B
Python
Executable File
|
|
#from DataStructs import cDataStructs
|
|
from DataStructs import cDataStructs
|
|
import moduleA
|
|
import moduleB
|
|
import moduleC
|
|
|
|
print("*****************************")
|
|
print("Testing self print for classA")
|
|
A = moduleA.classA()
|
|
A.printA()
|
|
print("*****************************")
|
|
print()
|
|
|
|
print("*****************************")
|
|
print("Testing self print for classC")
|
|
C = moduleC.classC()
|
|
C.printC()
|
|
print("*****************************")
|
|
print()
|
|
|
|
print("*****************************")
|
|
print("Testing crossing C to B")
|
|
moduleB.testCrossC(C)
|
|
print("*****************************")
|
|
print()
|
|
|
|
cc = moduleB.GetClassC()
|
|
cc.printC()
|
|
|
|
fp = cDataStructs.ExplicitBitVect(20)
|
|
|
|
print("created fp")
|
|
|
|
fp = moduleB.GetEBV()
|
|
|
|
#print("*****************************")
|
|
#print("Testing crossing A to B")
|
|
#moduleB.testCrossA(A)
|
|
#print("*****************************")
|