Hi Tin, Tin Tvrtković <[email protected]> writes: > Pudb looks very interesting and useful. I'm having trouble, however, > debugging multithreaded programs. For example, if I set a breakpoint in a > method and execute that method in a separate thread, the breakpoint doesn't > get triggered. Am I doing something wrong or is this simply not available > right now?
Pudb is no better than pdb (Python's built-in debugger) in this regard--in fact, it's built on the same machinery (bdb). See this PDF for some tricks: http://lrodrigo.lncc.br/images/a/ab/PyThreads.pdf I'd be open to see pudb aimed at a less limited backend at some point, but that's all we've got for now. Andreas _______________________________________________ Pudb mailing list [email protected] http://lists.tiker.net/listinfo/pudb
