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, krichter, xdegaye
Date 2015-01-10.11:10:50
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1420888250.81.0.528940461107.issue23163@psf.upfronthosting.co.za>
In-reply-to
Content
pdb does not ignore breakpoints which are set and hit in a non-main thread.
For example with the attached script:

$ python pdb_thread.py
> pdb_thread.py(5)foo()
-> lineno = 5
(Pdb) break 6
Breakpoint 1 at pdb_thread.py:6
(Pdb) continue
> pdb_thread.py(6)foo()
-> lineno = 6
(Pdb) threading.current_thread().name
'fooThread'
(Pdb)
History
Date User Action Args
2015-01-10 11:10:50xdegayesetrecipients: + xdegaye, georg.brandl, krichter
2015-01-10 11:10:50xdegayesetmessageid: <1420888250.81.0.528940461107.issue23163@psf.upfronthosting.co.za>
2015-01-10 11:10:50xdegayelinkissue23163 messages
2015-01-10 11:10:50xdegayecreate