Skip to content

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