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?

link|improve this question

78% accept rate
feedback

2 Answers

up vote 2 down vote accepted

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

link|improve this answer
Oh I had no idea what this was for, thanks. – Matt Joiner Jul 17 '10 at 4:19
feedback

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 112
pdb> c
link|improve this answer
This leaves a break at that line -- tbreak (the temporary break, that works just once), as I suggested earlier, seems closer to what the OP is asking. – Alex Martelli Jul 17 '10 at 3:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.