commit | 68468eba635570400f607e140425a222018e56f9 | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Thu Feb 27 20:14:51 2003 +0000 |
committer | Guido van Rossum <guido@python.org> | Thu Feb 27 20:14:51 2003 +0000 |
tree | 2176c8822392383a88caa0a2209a1d2f3446d45c | |
parent | f389c7727362321a91dbaff13b7e1cef6cbaa3d8 [diff] [blame] |
Get rid of many apply() calls.
diff --git a/Lib/sched.py b/Lib/sched.py index ba5f33a..2b599ee 100644 --- a/Lib/sched.py +++ b/Lib/sched.py
@@ -102,5 +102,5 @@ self.delayfunc(time - now) else: del q[0] - void = apply(action, argument) + void = action(*argument) self.delayfunc(0) # Let other threads run