Hi,
I had a strange sympy error -- the last line in the code below leads
to an infinite recursion and never ends.
import sympy
from sympy import Function, Symbol
class f(Function):
pass
sorted([sympy.Real(10), Symbol('x')]) # ok
f(10) # ok
sorted([f(10), Symbol('x')]) # error never ends
It is tested on sympy 0.6.7
I appreciate any suggestions.
Jeff
--
You received this message because you are subscribed to the Google Groups
"sympy" 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?hl=en.