[issue23048] abort when jumping out of a loop

2014-12-14 Thread Xavier de Gaye
Xavier de Gaye added the comment: > Building on OS X 10.10 with the head of the code tree (as of today), I cannot > reproduce this. Also the disassembly looks fine: I should have mentionned that I am running a debug build of python. -- ___ Python t

[issue23048] abort when jumping out of a loop

2014-12-13 Thread Roundup Robot
Roundup Robot added the comment: New changeset 09f938915c6f by Benjamin Peterson in branch '3.4': pop the loop block even for infinite while loops (closes #23048) https://hg.python.org/cpython/rev/09f938915c6f New changeset baa5258bef22 by Benjamin Peterson in branch '2.7': pop the loop block ev

[issue23048] abort when jumping out of a loop

2014-12-13 Thread Benjamin Peterson
Changes by Benjamin Peterson : -- assignee: -> benjamin.peterson nosy: +benjamin.peterson ___ Python tracker ___ ___ Python-bugs-list

[issue23048] abort when jumping out of a loop

2014-12-13 Thread Raymond Hettinger
Raymond Hettinger added the comment: Building on OS X 10.10 with the head of the code tree (as of today), I cannot reproduce this. Also the disassembly looks fine: $ python3.5 jump.py > /Users/raymond/tmp/jump.py(3)foo() -> while 1: (Pdb) next > /Users/raymond/tmp/jump.py(4)foo() -> pass (Pdb

[issue23048] abort when jumping out of a loop

2014-12-13 Thread Xavier de Gaye
New submission from Xavier de Gaye: With the following jump.py script: def foo(): import pdb; pdb.set_trace() while 1: pass return # this is line 5 foo() The following debugging session aborts on Python 3.5.0a0 (default:334c01aa7f93, Dec 3 2014, 16:20:19): $ python jump.p