Get rid of do_clear_break / do_clb command -- it is redundant.
(It was left in accidentally after a long and arduous 3-way patch session.)
This commit is contained in:
parent
b80667d5f3
commit
583cc31c22
20
Lib/pdb.py
20
Lib/pdb.py
|
@ -423,26 +423,6 @@ class Pdb(bdb.Bdb, cmd.Cmd):
|
|||
print 'Deleted breakpoint %s ' % (i,)
|
||||
do_cl = do_clear # 'c' is already an abbreviation for 'continue'
|
||||
|
||||
def do_clear_break(self, arg):
|
||||
if not arg:
|
||||
self.do_clear("")
|
||||
return
|
||||
arg = string.strip(arg)
|
||||
# First arg is file, second is line, ignore anything else
|
||||
args = string.split(arg)
|
||||
if len(args) < 2:
|
||||
print '*** Specify file and line number.'
|
||||
return
|
||||
try:
|
||||
line = int(args[1])
|
||||
except:
|
||||
print '*** line number must be an integer.'
|
||||
return
|
||||
result =self.clear_break(args[0], line)
|
||||
if result:
|
||||
print result
|
||||
do_clb = do_clear_break
|
||||
|
||||
def do_where(self, arg):
|
||||
self.print_stack_trace()
|
||||
do_w = do_where
|
||||
|
|
Loading…
Reference in New Issue