The Python Debugger (pdb) is an interactive source code debugger for Python programs supporting:
- Setting breakpoints
- Single-stepping at the source line level
- Stack frame inspection
- Source code listing
- Evaluation of arbitrary Python code within the stack frame
- Post-mortem debugging
- Invocation under program control
The pdb module is available in the standard library of 2.x and 3.x.