Is there a way to skip a line or two altogether in pdb?
Say I have a pdb session:
> print 10
import pdb; pdb.set_trace()
destroy_the_universe() # side effect
useful_line()
And I want to go straight to useful_line() WITHOUT invoking pdb() once again, or destroying the universe. Is there a way to skip (i.e. not execute code) what is between
print 10 and useful_line()?