Do you agree? It would be useful for: In [10]: x.subs(Eq(x,1)) --------------------------------------------------------------------------- ValueError: When a single argument is passed to subs it should be an iterable of (old, new) tuples.
In [11]: x.subs([Eq(x,1)]) --------------------------------------------------------------------------- TypeError: 'Equality' object is not iterable -- 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.
