How to debug python programs in emacs?

I use python-mode.el

I get reference like import pdb; pdb.set_trace();

but not sure how to use it.

link|improve this question

80% accept rate
feedback

1 Answer

up vote 6 down vote accepted

Type M-x cd to change directory to the location of the program you wish to debug. Type M-x pdb. You'll be prompted with Run pdb (like this): pdb. Enter the name of the program (e.g. test.py).

At the (Pdb) prompt, type help to learn about how to use pdb.

Alternatively, you can put

import pdb 
pdb.set_trace()

right inside your program (e.g. test.py). Now type M-x shell to get a shell prompt. When you run your program, you'll be dumped into pdb at the point where pdb.set_trace() is executed.

link|improve this answer
Using pdbtrack (through M-x shell) is probably a better solution. It's much easier to control directories and environments that way. – matt harrison Feb 24 '10 at 15:00
1  
@matt with M-x pdb you can set break points in source files and a cursor will show the current position of execution as you step through: twistedmatrix.com/documents/current/core/howto/… – Justin Smith Feb 25 '10 at 23:59
A graphical tutorial may be found here: sunnyeves.blogspot.com/2011/04/… – gt6989b Apr 19 at 22:00
stackoverflow.com/questions/9167614/… might be helpful if you don't have a pdb executable, see @sanityinc's comment: create a shell script pdb in any of the dir's in your path with text: #!/bin/bash exec python -m pdb "$@" – user247077 May 12 at 12:40
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.