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), before actually stepping into func.
Generally I find myself using step followed by r to return from the frames I'm not interested in, and often inexplicably pass over and miss the opportunity to step directly into func.
How do I step directly into func, or what sequence of debugger commands will guarantee that I end up in func rather than passing over it?