Comment #2 on issue 1300 by [email protected]: series() gives less terms than expected
http://code.google.com/p/sympy/issues/detail?id=1300
This issue is fixed two weeks ago or more, and it is in master now. In [3]: (cos(x)**2).series(x, 0, 10) Out[3]: 1 - x**2 + x**4/3 - 2*x**6/45 + x**8/315 + O(x**10) In [4]: (sin(x)**2).series(x, 0, 10) Out[4]: x**2 - x**4/3 + 2*x**6/45 - x**8/315 + O(x**10) -- 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.
