Debugging Python(Twisted) with Emacs
Open up your project files. sometimes emacs can’t find them if you don’t have them open before-hand.
Make sure you have a program called
pdbsomewhere in your PATH, with the following contents:#!/bin/sh exec python -m pdb $1 $2 $3 $4 $5 $6 $7 $8 $9
Run
M-x pdbin emacs. If you usually run your program aspython foo.py, your command line should bepdb foo.py, fortwistdandtrialjust add -b to the command line, e.g.:twistd -b -y my.tacWhile pdb waits for your input, go to a place in your code and hit
C-x SPCto insert a break-point. pdb should say something happy. Do this in as many points as you wish.Go to your pdb buffer and hit
c; this runs as normal until a break-point is found.Once you get to a breakpoint, use
sto step,nto run the current line without stepping through the functions it calls,wto print out the current stack,uanddto go up and down a level in the stack,p footo print result of expressionfoo.Recommendations for effective debugging:
use
p selfa lot; just knowing the class where the current code is isn’t enough most of the time.use
wto get your bearings, it’ll re-display the current-line/arrowafter you use
w, useuanddand lots morep selfon the different stack-levels.If you’ve got a big code-path that you need to grok, keep another buffer open and list the code-path there (e.g., I had a nasty-evil Deferred recursion, and this helped me tons)
Footnotes