From 68468eba635570400f607e140425a222018e56f9 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Thu, 27 Feb 2003 20:14:51 +0000 Subject: Get rid of many apply() calls. --- Lib/pdb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/pdb.py') diff --git a/Lib/pdb.py b/Lib/pdb.py index 6ae2885329..d7215cfa7b 100755 --- a/Lib/pdb.py +++ b/Lib/pdb.py @@ -948,7 +948,7 @@ def runctx(statement, globals, locals): run(statement, globals, locals) def runcall(*args): - return apply(Pdb().runcall, args) + return Pdb().runcall(*args) def set_trace(): Pdb().set_trace() -- cgit v1.2.1