python - Is it possible to skip breakpoints in pdb / ipdb? -
is there way tell pdb or ipdb skip future break-points , finish execution if weren't there?
maybe can try clear.
from help: '(pdb) clear cl(ear) filename:lineno cl(ear) [bpnumber [bpnumber...]] space separated list of breakpoint numbers, clear breakpoints. without argument, clear breaks (but first ask confirmation). filename:lineno argument, clear breaks @ line in file. note argument different previous versions of debugger (in python distributions 1.5.1 , before) linenumber used instead of either filename:lineno or breakpoint numbers.
there topic discuss of question: how exit pdb , allow program continue?
Comments
Post a Comment