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 georg.brandl, terry.reedy, xdegaye
Date 2014-07-20.10:38:12
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1405852692.37.0.111544311508.issue21997@psf.upfronthosting.co.za>
In-reply-to
Content
> # This returns to a '>>>' prompt,

At the above line in Terry test, the debugger is not terminated and on linux when I type <Ctl-D> at this point I get:

>>>
--Call--
> /home/xavier/etc/.pystartup(21)save_history()
-> def save_history(historyPath=historyPath):
(Pdb)

So this seems to be demonstrating the same problem as a).

The NameError exception (name 'run' is not defined) is caused by the execution of its def statement having been interrupted by the debugger with BdbQuit.

This issue could be kept open so as to include the "exec('do()', locals())" with the test cases when fixing the problem of Pdb termination.
History
Date User Action Args
2014-07-20 10:38:12xdegayesetrecipients: + xdegaye, georg.brandl, terry.reedy
2014-07-20 10:38:12xdegayesetmessageid: <1405852692.37.0.111544311508.issue21997@psf.upfronthosting.co.za>
2014-07-20 10:38:12xdegayelinkissue21997 messages
2014-07-20 10:38:12xdegayecreate