[issue5223] infinite recursion in PyErr_WriteUnraisable

2012-10-16 Thread Antoine Pitrou
Antoine Pitrou added the comment: Ok, so I would say this whole issue is out of date now, since maintained branches don't show the issue. -- resolution: -> out of date stage: patch review -> committed/rejected status: open -> closed ___ Python track

[issue5223] infinite recursion in PyErr_WriteUnraisable

2012-10-16 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: On 2.7 prints two 42, on 3.x fails (RuntimeError: maximum recursion depth exceeded in comparison) on first call. 2.6 out of date for non-security fix. -- nosy: +serhiy.storchaka status: pending -> open ___ Python t

[issue5223] infinite recursion in PyErr_WriteUnraisable

2011-01-03 Thread Antoine Pitrou
Antoine Pitrou added the comment: Works fine under 2.7-3.2. Not sure this is worth fixing in 2.6. -- status: open -> pending ___ Python tracker ___ __

[issue5223] infinite recursion in PyErr_WriteUnraisable

2010-07-28 Thread Mark Lawrence
Mark Lawrence added the comment: Could the experts who have previously commented please advise as to whether this issue should be open, closed or whatever. -- nosy: +BreamoreBoy ___ Python tracker

[issue5223] infinite recursion in PyErr_WriteUnraisable

2010-02-09 Thread Antoine Pitrou
Antoine Pitrou added the comment: As already mentioned, the backport patch isn't up to date. -- ___ Python tracker ___ ___ Python-bugs

[issue5223] infinite recursion in PyErr_WriteUnraisable

2010-02-09 Thread Brian Curtin
Changes by Brian Curtin : -- priority: -> normal stage: -> patch review ___ Python tracker ___ ___ Python-bugs-list mailing list Unsu

[issue5223] infinite recursion in PyErr_WriteUnraisable

2009-03-13 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc added the comment: yes, let's add this change to the backport. -- ___ Python tracker ___ ___ Python-bugs-list mai

[issue5223] infinite recursion in PyErr_WriteUnraisable

2009-03-11 Thread Antoine Pitrou
Antoine Pitrou added the comment: Amaury, there is a funny bug in the 3.0 implementation with very low recursion limits (#5392). -- nosy: +pitrou ___ Python tracker ___ _

[issue5223] infinite recursion in PyErr_WriteUnraisable

2009-03-09 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc added the comment: python 3.0 does not crash. And it has better code for infinite recursion (r55850, r66186) I suggest to backport the py3k code, patch attached. Martin, your comments are welcome. Are there compatibility issues? -- keywords: +patch message_count: 4

[issue5223] infinite recursion in PyErr_WriteUnraisable

2009-03-08 Thread lplatypus
lplatypus added the comment: Hi amaury, I am copying you into this issue because I think it was introduced in your revision 65320 when you added a call to PyErr_WriteUnraisable from PyErr_GivenExceptionMatches in Python/errors.c. Any thoughts on on this issue or how to fix it would be very welco

[issue5223] infinite recursion in PyErr_WriteUnraisable

2009-02-12 Thread STINNER Victor
Changes by STINNER Victor : -- nosy: +haypo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.o

[issue5223] infinite recursion in PyErr_WriteUnraisable

2009-02-11 Thread lplatypus
lplatypus added the comment: sorry I meant revision 65320 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.py

[issue5223] infinite recursion in PyErr_WriteUnraisable

2009-02-11 Thread lplatypus
lplatypus added the comment: I believe that this problem was introduced in subversion revision 65319. ___ Python tracker ___ ___ Python-bugs-li

[issue5223] infinite recursion in PyErr_WriteUnraisable

2009-02-11 Thread lplatypus
New submission from lplatypus : Here is an example of pure Python code which can cause the interpreter to crash. I can reproduce the problem in 2.6.0 and 2.6.1 but not in 2.5.2. The __getattr__ function in this example is interesting in that it involves infinite recursion, but then the RuntimeE