Comment #1 on issue 1627 by [email protected]: (1/sin(x)**5).series()
should work better
http://code.google.com/p/sympy/issues/detail?id=1627
In the master branch
```
(1/sin(x)**5).series(x, 0, 10)
x**(-5) + 5/(6*x**3) + 3/(8*x) + 367*x/3024 + 11513*x**3/362880 +
18979*x**5/2661120 + 62451523*x**7/43589145600 + 41412347*x**9/156920924160
+ O(x**10)
```
which has the correct order, so this issue could be closed.
--
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.