mirror of
https://github.com/AdaCore/cpython.git
synced 2026-02-12 12:57:15 -08:00
backport bug [ 1192315 ] 'clear -1' in pdb
This commit is contained in:
@@ -450,11 +450,14 @@ class Pdb(bdb.Bdb, cmd.Cmd):
|
||||
return
|
||||
numberlist = arg.split()
|
||||
for i in numberlist:
|
||||
if not (0 <= i < len(bdb.Breakpoint.bpbynumber)):
|
||||
print 'No breakpoint numbered', i
|
||||
continue
|
||||
err = self.clear_bpbynumber(i)
|
||||
if err:
|
||||
print '***', err
|
||||
else:
|
||||
print 'Deleted breakpoint %s ' % (i,)
|
||||
print 'Deleted breakpoint', i
|
||||
do_cl = do_clear # 'c' is already an abbreviation for 'continue'
|
||||
|
||||
def do_where(self, arg):
|
||||
|
||||
@@ -70,6 +70,8 @@ Library
|
||||
|
||||
- The sets module can now properly compute s-=s and s^=s as an empty set.
|
||||
|
||||
- Bug #1192315: Disallow negative arguments to clear() in pdb.
|
||||
|
||||
- Patch #827386: Support absolute source paths in msvccompiler.py.
|
||||
|
||||
- Fix a problem in Tkinter introduced by SF patch #869468: delete bogus
|
||||
|
||||
Reference in New Issue
Block a user