]> granicus.if.org Git - python/commitdiff
When explaining the enterabs() method, using the modern spelling of apply(),
authorFred Drake <fdrake@acm.org>
Mon, 23 Jul 2001 19:28:09 +0000 (19:28 +0000)
committerFred Drake <fdrake@acm.org>
Mon, 23 Jul 2001 19:28:09 +0000 (19:28 +0000)
and relax the type of the argument list from tuple to sequence.

Doc/lib/libsched.tex

index 678772d1e1dbd1bb7c2414b98d25dd261b780789..6b586a845c79d6660dab225c99e87d311920dab8 100644 (file)
@@ -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()}).