Top "Pdb" questions

This tag refers to the Python debugger.

pdb cannot break in another thread?

Consider this multi-threaded program: import threading class SomeThread(threading.Thread): def run(self): a = 1 print a def main(): print 'hola' …

python multithreading breakpoints pdb
Stepping into a function in IPython

Is there a way to step into the first line of a function in ipython. I imagine something that would …

python debugging ipython pdb
Where to find the pdb files for Qt's dll?

I am debugging a Qt application. Where can I find Qt's debug dll? I am using vs2010 on windows. It …

c++ qt pdb
How do I list the current line in python PDB?

In the perl debugger, if you repeatedly list segments of code taking you away from the current line, you can …

python pdb
How to debug sublime plugins during development

I want to debug my plugin with pdb but it doesn't work. I get these errors Traceback (most recent call …

python debugging sublimetext2 sublimetext pdb
In the Python debugger pdb, how do you exit interactive mode without terminating the debugging session

Using python 3.5.1 When I run a script using the python debugger module: [home]# python -m pdb myscript.py This starts …

python debugging pdb
Get reference to the current exception

$ ./runtests.py -v tests/managers/test_customer.py:CustomerManagerTest.test_register_without_subscription --ipdb ... test_register_without_subscription (tests.managers.…

python debugging exception pdb ipdb
Get last exception in pdb

Is there a way to examine the last exception when in pdb/before entering pdb? (Using python 2.7.5). Immediately (yes, I …

python exception python-2.7 pdb
Interrupt (pause) running Python program in pdb?

In gdb, you can interrupt(pause) the program by C-c and resume. Can you do this in pdb?

python debugging pdb
How do you pass script arguments to pdb (Python)?

I've got python script (ala #! /usr/bin/python) and I want to debug it with pdb. How can I pass …

python debugging arguments pdb