summaryrefslogtreecommitdiffstats
path: root/Lib/trace.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/trace.py')
-rw-r--r--Lib/trace.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/trace.py b/Lib/trace.py
index e458d1d..8b49a2e 100644
--- a/Lib/trace.py
+++ b/Lib/trace.py
@@ -471,7 +471,7 @@ class Trace:
if not self.donothing:
sys.settrace(self.globaltrace)
try:
- result = apply(func, args, kw)
+ result = func(*args, **kw)
finally:
if not self.donothing:
sys.settrace(None)