Comment #4 on issue 2216 by asmeurer: Module names are imported with from sympy import *
http://code.google.com/p/sympy/issues/detail?id=2216
OK, so let's just use explicit imports in all the __init__.py files. It's more bookkeeping, but adding new functions to the namespace is a rarity so it isn't too big of a deal.
Concerning your docstring, I would just replace "help(ode.ode_hintname)" with `help(sympy.solvers.ode.ode_hintname)`". We should neither encourage our users to do 'from sympy import *' nor assume that they have done so.
That's what I was thinking we should do too. And those docstrings are also available at http://docs.sympy.org/dev/modules/solvers/ode.html#hint-methods.
-- 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.
