summaryrefslogtreecommitdiffstats
path: root/Lib/pdb.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/pdb.py')
-rwxr-xr-xLib/pdb.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/pdb.py b/Lib/pdb.py
index 3c229ab..b608adf 100755
--- a/Lib/pdb.py
+++ b/Lib/pdb.py
@@ -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()