Comment #9 on issue 2216 by [email protected]: Module names are imported with from sympy import *
http://code.google.com/p/sympy/issues/detail?id=2216

I think this can be fixed by adding "del module" to the bottom of each __init__.py file for each module. I think using __all__ is cleaner, though. You can just use __all__.extend(submodule.__all___) to avoid having to type each imported name more than once. Take a look at how numpy does it, for example (numpy also has a lot of other magic going on in their __init__.py files, so look selectively).

--
You received this message because you are subscribed to the Google Groups 
"sympy-issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/sympy-issues?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to