[issue21997] Pdb.set_trace debugging does not end correctly in IDLE

2014-07-19 Thread Xavier de Gaye
Xavier de Gaye added the comment: Two issues here: a) in IDLE, on a 'return' debug event in the main module, the step command does not end the debugging session. b) in IDLE, BdbQuit is raised by the quit command when the debugger is started with pdb.set_trace(). I do not know IDLE, but a) seem

[issue21997] Pdb.set_trace debugging does not end correctly in IDLE

2014-07-17 Thread ppperry
Changes by ppperry : -- hgrepos: -264 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/

[issue21997] Pdb.set_trace debugging does not end correctly in IDLE

2014-07-17 Thread ppperry
Changes by ppperry : -- hgrepos: +264 nosy: +georg.brandl, terry.reedy -ppperry ___ Python tracker ___ ___ Python-bugs-list mailing li

[issue21997] Pdb.set_trace debugging does not end correctly in IDLE

2014-07-17 Thread ppperry
Changes by ppperry : -- type: -> behavior ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.

[issue21997] Pdb.set_trace debugging does not end correctly in IDLE

2014-07-17 Thread ppperry
New submission from ppperry: In IDLE: >>>def dodebug(): pdb.set_trace() >>>dodebug() --Return-- > (2)dodebug()->None (Pdb) s --Return-- > (1)()->None (Pdb) s PDB should exit, but it doesn't > c:\python27\lib\idlelib\run.py(308)runcode() -> interruptable =