Comment #1 on issue 2232 by asmeurer: naming conflict for library function
generated symbols.
http://code.google.com/p/sympy/issues/detail?id=2232
The solution to this problem in SymPy is to use Dummy symbols, which do not
compare equal to other symbols with the same name. e.g.,
In [106]: a = Dummy('a')
In [107]: b = Dummy('a')
In [108]: c = Symbol('a')
In [109]: a == b
Out[109]: False
In [110]: a == c
Out[110]: False
See also issue 1739.
--
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.