Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5bbbc94 commit 0079ffcCopy full SHA for 0079ffc
1 file changed
Lib/pdb.py
@@ -805,6 +805,8 @@ def do_condition(self, arg):
805
cond = None
806
try:
807
bp = self.get_bpbynumber(args[0].strip())
808
+ except IndexError:
809
+ self.error('Breakpoint number expected')
810
except ValueError as err:
811
self.error(err)
812
else:
@@ -832,6 +834,8 @@ def do_ignore(self, arg):
832
834
count = 0
833
835
836
837
838
839
840
841
0 commit comments