diff options
author | Fred Drake <fdrake@acm.org> | 2001-07-23 19:28:09 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2001-07-23 19:28:09 (GMT) |
commit | 6fd3b22847c63fc13b67de936507b7e5e6b5e71d (patch) | |
tree | 1d162c5e11e8434d08ce3852cdcd22c76436d192 /Doc | |
parent | 6fdb90c0ca027695e7c89049900f87be6deb56fd (diff) | |
download | cpython-6fd3b22847c63fc13b67de936507b7e5e6b5e71d.zip cpython-6fd3b22847c63fc13b67de936507b7e5e6b5e71d.tar.gz cpython-6fd3b22847c63fc13b67de936507b7e5e6b5e71d.tar.bz2 |
When explaining the enterabs() method, using the modern spelling of apply(),
and relax the type of the argument list from tuple to sequence.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/lib/libsched.tex | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/lib/libsched.tex b/Doc/lib/libsched.tex index 678772d..6b586a8 100644 --- a/Doc/lib/libsched.tex +++ b/Doc/lib/libsched.tex @@ -55,9 +55,9 @@ to the constructor. Events scheduled for the same \var{time} will be executed in the order of their \var{priority}. -Executing the event means executing \code{apply(\var{action}, -\var{argument})}. \var{argument} must be a tuple holding the -parameters for \var{action}. +Executing the event means executing +\code{\var{action}(*\var{argument})}. \var{argument} must be a +sequence holding the parameters for \var{action}. Return value is an event which may be used for later cancellation of the event (see \method{cancel()}). |