Status: New
Owner: ----
Labels: Type-Defect Priority-Medium
New issue 3439 by jenshnie...@gmail.com: Don't pollute global namaespace
with plot.
http://code.google.com/p/sympy/issues/detail?id=3439
Running from sympy import * as is the default in isympy
results in sympys plot function being imported into the global namespace.
That is not very smart since that function is already in pylab and is
normally matplotlib.pyplot.plot. This will result in weird problems for the
users expecting mpl's function.
Either this should not be called plot but sympy_plot symbolic_plot ect.
Or the function should not be imported into the global namespace.
Or you should stop shipping isympy with from sympy import *
and change it to import sympy as sp or something.
--
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.