Python Debugging

Article by:
Date Published:
Last Modified:

pdb

Keyboard Shortcuts

1
2
3
4
n   step to Next line or current function returns   
c   continue until breakpoint is hit
b <line_num> set breakpoint at line number in current file
cl    clear all breakpoints (asks for confirmation)

Escaping Variables Which Conflict With PDB Commands

Sometimes, you will run to run Python commands through the PDB console which will clash with PDB’s own command set. One example would be if you had a variable called c, and wanted to assign to it:

1
2
# (in a PDB debugging console)
c = 23

Instead of assigning the variable c the value 23, PDB will interpret the above c as it’s continue command. To prevent this from happening, prefix the command with !:

1
!c = 23

Entering A Running Python Process

pyrasite-shell is a great tool for attaching to a running Python process. You can install it using pip with:

1
$ pip install pyrasite

You can then attach a pyrasite shell to a running python process using the process ID (PID):

1
$ pyrasite-shell 12345

You should then be presented with an interactive Python shell, and you can do things like print the stack trace for each thread:

1
2
3
4
5
import sys, traceback
for thread_id, frame in sys._current_frames().items():
    print(f'**** STACK TRACE FOR THREAD {thread_id} *****'
    traceback.print_stack(frame)
    print('***** END OF STACK TRACE *****')

Note that annoyingly, coping and pasting this code into the interactive console will not usually work (due to whitespace getting mangled perhaps?).

pyrasite-shell is a great tool for attaching to “hung” or “frozen” Python processes, which might be stuck in a loop or stuck in a blocked state waiting for something to happen.


Authors

Geoffrey Hunter

Dude making stuff.

Creative Commons License
This work is licensed under a Creative Commons Attribution 4.0 International License .

Related Content:

Tags

comments powered by Disqus