Comment #3 on issue 1269 by asmeurer: lseries hangs
http://code.google.com/p/sympy/issues/detail?id=1269

The traceback gives a clue:

In [3]: g.next()
^C---------------------------------------------------------------------------
KeyboardInterrupt                         Traceback (most recent call last)

/Users/aaronmeurer/Documents/Python/sympy/sympy/<ipython console> in  
<module>()

/Users/aaronmeurer/Documents/Python/sympy/sympy/sympy/core/basic.pyc in  
_eval_lseries(self, x, x0)
    2290             while series == e:
    2291                 n += 1
-> 2292                 e = self.nseries(x, x0, n).removeO()
    2293             term = e - series
    2294             series = e

/Users/aaronmeurer/Documents/Python/sympy/sympy/sympy/core/basic.pyc in  
removeO(self)
    1380     def removeO(self):
    1381         "Removes the O(..) symbol if there is one"
-> 1382         if self.is_Order:
    1383             return Integer(0)
    1384         for i,x in enumerate(self.args):

KeyboardInterrupt:

So it seems that it is hanging on that while loop in _eval_lseries.

--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

--

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=.


Reply via email to