summaryrefslogtreecommitdiff
path: root/Lib/sched.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2003-02-27 20:14:51 +0000
committerGuido van Rossum <guido@python.org>2003-02-27 20:14:51 +0000
commit5e10dde304be3726ca1600307486278657dfa9ab (patch)
tree1e2c70236e018ba564d3b3e4c0aa9e88afc6a433 /Lib/sched.py
parent53cd6a594e3fdcbe7bf1d8260169c2eec55b069f (diff)
downloadcpython-5e10dde304be3726ca1600307486278657dfa9ab.tar.gz
Get rid of many apply() calls.
Diffstat (limited to 'Lib/sched.py')
-rw-r--r--Lib/sched.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/sched.py b/Lib/sched.py
index ba5f33a6ae..2b599eed90 100644
--- a/Lib/sched.py
+++ b/Lib/sched.py
@@ -102,5 +102,5 @@ class scheduler:
self.delayfunc(time - now)
else:
del q[0]
- void = apply(action, argument)
+ void = action(*argument)
self.delayfunc(0) # Let other threads run