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

Thanks for opening this, I should have done it myself.

Importing * from a (sub)package brings all the public names of that package into the current namespace. The problem is that modules are necessarily part of the public interface of their parent package but shouldn't appear in their grandparent's namespace. I think that the only way to fix it is to avoid using import * in sympy/__init__.py and only use explicit imports instead.



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

Reply via email to