[issue14743] on terminating, Pdb debugs itself

2019-03-15 Thread Mark Lawrence
Change by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue14743] on terminating, Pdb debugs itself

2014-07-04 Thread Mark Lawrence
Mark Lawrence added the comment: Can we have a formal patch review please, but note the similar patch on #14788. -- nosy: +BreamoreBoy versions: +Python 3.4, Python 3.5 -Python 3.2, Python 3.3 ___ Python tracker __

[issue14743] on terminating, Pdb debugs itself

2012-12-05 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue14743] on terminating, Pdb debugs itself

2012-11-24 Thread Xavier de Gaye
Xavier de Gaye added the comment: See also how this is fixed at http://code.google.com/p/pdb-clone/source/detail?r=625d61e3494d3b7e2a3e8578ddd2f204e21f1800 -- ___ Python tracker

[issue14743] on terminating, Pdb debugs itself

2012-05-11 Thread Xavier de Gaye
Xavier de Gaye added the comment: The previous patch only fixed the problem when the debugger is started from its main function. Uploaded new patch pdb_botframe_default_3.patch that fixes pdb.main and the pdb.run* function. This patch also corrects pdb.runcall(): in the following session, the 3

[issue14743] on terminating, Pdb debugs itself

2012-05-08 Thread Xavier de Gaye
Xavier de Gaye added the comment: Uploaded a new patch, pdb_botframe_default_2.patch (that applies to the current tip of the default branch) with: * a correction to the initial change made to fix sigint_handler() * the two test cases -- Added file: http://bugs.python.org/file2

[issue14743] on terminating, Pdb debugs itself

2012-05-07 Thread Éric Araujo
Changes by Éric Araujo : -- keywords: +needs review nosy: +georg.brandl stage: -> test needed ___ Python tracker ___ ___ Python-bugs-

[issue14743] on terminating, Pdb debugs itself

2012-05-07 Thread Xavier de Gaye
New submission from Xavier de Gaye : All the problems raised in this issue are caused by self.botframe being set in a Pdb frame. In the following pdb session run with python 3.2.2, the first two frames in the printed stack are Pdb frames, this is wrong. And the second step command steps incorrec