␡
- Python Libraries
- Python Services
- The String Group
- Miscellaneous
- Generic Operational System
- Optional Operational System
- Debugger
- Profiler
- Internet Protocol and Support
- Internet Data Handling
- Restricted Execution
- Multimedia
- Cryptographic
- UNIX Specific
- SGI IRIX Specific
- Sun OS Specific
- MS Windows Specific
- Macintosh Specific
- Undocumented Modules
- Summary
Debugger
The pdb module defines an interactive source code debugger for Python programs. You can use this tool to verify and modify variables and to set and examine breakpoints. It allows inspection of stack frames, single stepping of source lines, and code evaluation. This module is based on the module bdb, which implements a generic Python debugger base class.
See Chapter 17,"Development Tools," for details.