尚未翻译
本页面尚未翻译成中文,因此显示英文原文。 帮助翻译
breakpoint() Function¶
The breakpoint() function drops into the Python debugger (pdb by default) for interactive debugging.
Complexity Reference¶
| Operation | Time | Space | Notes |
|---|---|---|---|
breakpoint() |
O(1) | O(1) | Pauses execution |
| Debugger session | O(n) | O(n) | n = time spent debugging |
Related Modules¶
- pdb Module - Python debugger
- sys Module - System functions (breakpointhook)
- logging Module - Production debugging