I want to add pdb—the Python Debugger—to my toolbox. What's the best way to get started?

link|improve this question

79% accept rate
feedback

2 Answers

up vote 9 down vote accepted

Here's a list of resources to get started with the Python debugger:

  1. Read Steve Ferb's article "Debugging in Python"
  2. Watch Eric Holscher's screencast "Using pdb, the Python Debugger"
  3. Read Ayman Hourieh's article "Python Debugging Techniques"
  4. Read the Python documentation for pdb — The Python Debugger
  5. Read Chapter 9—When You Don't Even Know What to Log: Using Debuggers—of Karen Tracey's Django 1.1 Testing and Debugging.
link|improve this answer
Thanks for asking. We want more of you Matthew on SO ;-) – Wassim Jan 23 '11 at 16:58
feedback

Synopsis:

# epdb1.py -- experiment with the Python debugger, pdb
import pdb
a = "aaa"
pdb.set_trace()
b = "bbb"
c = "ccc"
final = a + b + c
print final

Now run your script:

$ python epdb1.py
(Pdb) p a
'aaa'
(Pdb)
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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