[issue13644] Python 3 aborts with this code.

2011-12-24 Thread Terry J. Reedy
Terry J. Reedy added the comment: @maniram I know what IDLE does. For the tracker, a 'bug' is a discrepancy between doc and behavior. According to the doc, a recursion loop should continue forever, just like an iteration loop ;=). Anyway, Roger is right, this is a duplicate of #6028, which ha

[issue13644] Python 3 aborts with this code.

2011-12-24 Thread Benjamin Peterson
Benjamin Peterson added the comment: 2011/12/24 Georg Brandl : > > Georg Brandl added the comment: > > Would it? (,) -- ___ Python tracker ___

[issue13644] Python 3 aborts with this code.

2011-12-24 Thread Georg Brandl
Georg Brandl added the comment: Would it? -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

[issue13644] Python 3 aborts with this code.

2011-12-24 Thread Benjamin Peterson
Benjamin Peterson added the comment: Basically forget my last 3 messages. -- ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue13644] Python 3 aborts with this code.

2011-12-24 Thread Benjamin Peterson
Benjamin Peterson added the comment: 2011/12/24 Georg Brandl : > > Georg Brandl added the comment: > >> Nothing, but that would be pointless; the recursion would just start again. Because it would be caught in the function call above in the stack? -- _

[issue13644] Python 3 aborts with this code.

2011-12-24 Thread Georg Brandl
Georg Brandl added the comment: > Nothing, but that would be pointless; the recursion would just start again. Why? -- ___ Python tracker ___ ___

[issue13644] Python 3 aborts with this code.

2011-12-24 Thread Georg Brandl
Changes by Georg Brandl : -- Removed message: http://bugs.python.org/msg150226 ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue13644] Python 3 aborts with this code.

2011-12-24 Thread Georg Brandl
Georg Brandl added the comment: Why? -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org

[issue13644] Python 3 aborts with this code.

2011-12-23 Thread Roger Serwy
Roger Serwy added the comment: This is identical to issue6028 and may be related to issue3555. -- ___ Python tracker ___ ___ Python-b

[issue13644] Python 3 aborts with this code.

2011-12-23 Thread maniram maniram
maniram maniram added the comment: @Terry IDLE restarts python (like in the menu entry "Restart Shell") when the Python process dies no matter how the Python process dies. So this issue is a valid bug. -- ___ Python tracker

[issue13644] Python 3 aborts with this code.

2011-12-23 Thread Terry J. Reedy
Terry J. Reedy added the comment: When I run this with 3.2.2 IDLE, from an edit window, I get an MSVC++ Runtime Library window: "Runtime Error! .../pythonw This application has requested termination in an unusual way...". When I close that, IDLE continues. So I would say that this is not a cr

[issue13644] Python 3 aborts with this code.

2011-12-23 Thread Benjamin Peterson
Benjamin Peterson added the comment: Nothing, but that would be pointless; the recursion would just start again. -- ___ Python tracker ___ __

[issue13644] Python 3 aborts with this code.

2011-12-23 Thread Georg Brandl
Georg Brandl added the comment: @OP: As you yourself wrote, this is an abort, not a segfault. It is not a crash; it is a controlled exit of the Python executable. @Benjamin: I don't really understand your reasoning: what is preventing Python to raise the error during the except clause?