This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author xdegaye
Recipients asvetlov, giampaolo.rodola, nailor, rmarko, xdegaye
Date 2014-05-27.17:01:21
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1401210082.02.0.128903710001.issue16446@psf.upfronthosting.co.za>
In-reply-to
Content
Yes the patch does change the semantics of the quit command:

    * no change when pdb is run as a script or with 'python -m pdb script_name'. As stated in the doc, the 'quit command': "Quit from the debugger. The program being executed is aborted."

    * but when a set_trace() breakpoint is inserted, 'quit' just terminates the debugger and the program continues its execution. It is the purpose of the patch to prevent an inconvenient crash with BdbQuit in that case. The idea is that the hard-coded breakpoint was set to investigate a local problem and one may want to let it run afterwards (for example to check its behavior after having changed some its internal state with pdb).

Sorry, I should have documented that behavior change.
History
Date User Action Args
2014-05-27 17:01:22xdegayesetrecipients: + xdegaye, giampaolo.rodola, asvetlov, nailor, rmarko
2014-05-27 17:01:22xdegayesetmessageid: <1401210082.02.0.128903710001.issue16446@psf.upfronthosting.co.za>
2014-05-27 17:01:22xdegayelinkissue16446 messages
2014-05-27 17:01:21xdegayecreate