Updates:
        Status: WontFix

Comment #2 on issue 3439 by asmeu...@gmail.com: Don't pollute global namaespace with plot.
http://code.google.com/p/sympy/issues/detail?id=3439

Keeping our names disjoint from numpy's is not a design decision of SymPy. We have a hard enough time not colliding with built-in Python names. Note that plot is far from the only function that will be overridden. All common math functions like cos, sin, etc. are also shared between the two libraries. If you want to use multiple namespaces, you should avoid import *, using either explicit imports, or import just the modules. Or if you know that you always will prefer the numpy names, do that import last.

isympy is designed to be an interactive environment for sympy. Mixing it with an interactive for numpy (pylab) will result in name clashes.

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

Reply via email to