Get rid of many apply() calls.
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 @@
         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)