From: Adam T. <a-t...@st...> - 2006-05-19 20:31:07
|
I see that the __init__.py file changed because of some weird circular importing problems, and that we can no longer use from cclib.parser import ADF or whatever. What if the init file was changed as follows? from adfparser import ADF from gaussianparser import Gaussian .... def guesser(filename): .... your routines ..... I think if it's changed this way, we could still do the from cclib.parser import whatever, and also from cclib.parser import guesser. Do you think this is worth looking into? (I pass it to you because I'm not an __init__.py magic person.) Adam |