summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2007-03-11 08:28:50 +0000
committerGeorg Brandl <georg@python.org>2007-03-11 08:28:50 +0000
commitd28d9c8221136a37e47eac569fd7a508c3c946e3 (patch)
treec4abdaddffd2793a20e076e5e7e5ac02d004b593
parent69fe9e478f5fac59b9a8bca5a317d9212c790e96 (diff)
downloadcpython-git-d28d9c8221136a37e47eac569fd7a508c3c946e3.tar.gz
Add missing "return" statements in exception handler.
(backport from rev. 54268)
-rwxr-xr-xLib/pdb.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/pdb.py b/Lib/pdb.py
index f7fce26a23..f08241ffbc 100755
--- a/Lib/pdb.py
+++ b/Lib/pdb.py
@@ -480,6 +480,7 @@ class Pdb(bdb.Bdb, cmd.Cmd):
# something went wrong
print >>self.stdout, \
'Breakpoint index %r is not a number' % args[0]
+ return
try:
cond = args[1]
except:
@@ -500,6 +501,7 @@ class Pdb(bdb.Bdb, cmd.Cmd):
# something went wrong
print >>self.stdout, \
'Breakpoint index %r is not a number' % args[0]
+ return
try:
count = int(args[1].strip())
except: