[Python-checkins] CVS: python/dist/src/Doc/lib libsched.tex,1.5,1.6

Fred L. Drake fdrake@users.sourceforge.net
Mon, 23 Jul 2001 12:28:11 -0700


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory usw-pr-cvs1:/tmp/cvs-serv29849/lib

Modified Files:
	libsched.tex 
Log Message:

When explaining the enterabs() method, using the modern spelling of apply(),
and relax the type of the argument list from tuple to sequence.


Index: libsched.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libsched.tex,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** libsched.tex	2000/12/01 15:25:23	1.5
--- libsched.tex	2001/07/23 19:28:09	1.6
***************
*** 56,62 ****
  \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}.
  
  Return value is an event which may be used for later cancellation of
--- 56,62 ----
  \var{priority}.
  
! 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