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.
Post a Comment for "Step Into Subroutine Call, But Not Calls Made For Parameters"