[issue20269] Inconsistent behavior in pdb when pressing Ctrl-C

2014-05-24 Thread Xavier de Gaye
Xavier de Gaye added the comment: The patch with a test case. -- Added file: http://bugs.python.org/file35339/sigint_2.patch ___ Python tracker ___ __

[issue20269] Inconsistent behavior in pdb when pressing Ctrl-C

2014-02-19 Thread Steven Downum
Changes by Steven Downum : -- nosy: +Steven.Downum ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue20269] Inconsistent behavior in pdb when pressing Ctrl-C

2014-01-15 Thread Xavier de Gaye
New submission from Xavier de Gaye: With this script: # START def foo(): while 1: pass import pdb; pdb.set_trace() foo() # END The following sequence of pdb commands aborts the script with a KeyboardInterrupt exception: next Ctrl-C continue While the equivalent following seq