Xavier de Gaye added the comment: 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) ---------- nosy: +xdegaye Added file: http://bugs.python.org/file37668/pdb_thread.py _______________________________________ Python tracker <[email protected]> <http://bugs.python.org/issue23163> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
