Skip to content Skip to sidebar Skip to footer

Step Into Subroutine Call, But Not Calls Made For Parameters

func(a(), b.c) When executing the line above in the pdb debugger, using step will actually step into a, and then into the getter for b.c if its atypical (such as being a property)

Solution 1:

tb func ("temporary break at func") followed by c ("continue") should work.

Solution 2:

I would handle this by setting a break at the line number inside func that you're interested in, and then use continue. For example suppose your code looks like this:

110  def func(a1, a2):
111"" docstring ""112      first interesting line

then do this:

python -m pdb caller.py
pdb> b 112pdb> c

Post a Comment for "Step Into Subroutine Call, But Not Calls Made For Parameters"