About

The Python Debugger (pdb) is an interactive source code debugger for Python programs supporting:

  1. Setting breakpoints
  2. Single-stepping at the source line level
  3. Stack frame inspection
  4. Source code listing
  5. Evaluation of arbitrary Python code within the stack frame
  6. Post-mortem debugging
  7. Invocation under program control

The pdb module is available in the standard library of 2.x and 3.x.

history|show excerpt|excerpt history