My script uses threads from the threading module
I try do debug it with the PDB module.
But the debugger ignores breakpoints to code that is executed by threads
How can this be worked around
Did I do something wrong?
I use:
Pdb.run('mymodu le.main()', globals(), locals())
I try do debug it with the PDB module.
But the debugger ignores breakpoints to code that is executed by threads
How can this be worked around
Did I do something wrong?
I use:
Pdb.run('mymodu le.main()', globals(), locals())
Comment