Comment #9 on issue 1484 by [email protected]: series should collect powers
http://code.google.com/p/sympy/issues/detail?id=1484
The simplest fix for the problem is to replace
return collect(s1,x) + o
with
try:
return collect(s1 ,x) + o
except NotImplementedError:
return s1 + o
--
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.