SF bug #1052503: pdb runcall should accept keyword arguments
This commit is contained in:
parent
9047c8f73d
commit
2ef7e6c8f2
|
@ -391,13 +391,13 @@ class Bdb:
|
|||
|
||||
# This method is more useful to debug a single function call.
|
||||
|
||||
def runcall(self, func, *args):
|
||||
def runcall(self, func, *args, **kwds):
|
||||
self.reset()
|
||||
sys.settrace(self.trace_dispatch)
|
||||
res = None
|
||||
try:
|
||||
try:
|
||||
res = func(*args)
|
||||
res = func(*args, **kwds)
|
||||
except BdbQuit:
|
||||
pass
|
||||
finally:
|
||||
|
|
|
@ -993,8 +993,8 @@ def runctx(statement, globals, locals):
|
|||
# B/W compatibility
|
||||
run(statement, globals, locals)
|
||||
|
||||
def runcall(*args):
|
||||
return Pdb().runcall(*args)
|
||||
def runcall(*args, **kwds):
|
||||
return Pdb().runcall(*args, **kwds)
|
||||
|
||||
def set_trace():
|
||||
Pdb().set_trace()
|
||||
|
|
Loading…
Reference in New Issue