In pdb the next instruction does not step over list comprehensions, instead it steps through each iteration. Is there a way to step over them so debugging will continue at the next line after the list comprehension?

I've had to resort to listing the code, setting a breakpoint at the next line, and then continuing execution to the next breakpoint. This is annoying and I figured there must be a better way.

link|improve this question

75% accept rate
feedback

1 Answer

up vote 8 down vote accepted

You can use the until command. Output of help until in pdb:

unt(il)
Continue execution until the line with a number greater than the current one is reached or until the current frame returns

link|improve this answer
Thanks. -1 for me not RTFM ;-) – davidavr Jun 10 '11 at 15:59
feedback

Your Answer

 
or
required, but never shown

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