Step over the current line without entering function calls.
Section: Breakpoints and pdb
pdb next
text
text
nExplanation
In pdb, `n` runs the current line and stops at the next line in the same frame.
Learn the surrounding workflow
Compare similar commands or jump into common fixes when this command is part of a bigger troubleshooting path.
Related commands
Same sheet · prioritizing Breakpoints and pdb
Insert a built-in breakpoint
Pause execution and enter the configured debugger.
Drop into pdb at a specific line
Classic explicit breakpoint using pdb.
Run a script with pdb and arguments
Pass normal program arguments when starting under pdb.