Comment #2 on issue 3335 by [email protected]: Don't automatically rewrite logical expressions
http://code.google.com/p/sympy/issues/detail?id=3335
It can make pragmatically creating an object from a list easier, as you don't have to special case the list being empty. Note that Mul() and Add() do this as well
In [1]: Mul() Out[1]: 1 In [2]: Add() Out[2]: 0 -- 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.
