Skip to content
Advertisement

Step into the non-innermost call in an expression with PDB

Consider a piece of code like this:

JavaScript

In PDB (or PDB++), the step command normally would step into the baz() function.

How can I step into the call to bar() or baz() instead of baz()? I don’t see anything about this in the PDB or PDB++ documentation.

Advertisement

Answer

Look at the list of debugger commands here.

You can either put a breakpoint using break or temporary breakpoint using tbreak in foo or bar:

JavaScript

or run until the baz end using return and then step again:

JavaScript
User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement