[Python-checkins] CVS: python/dist/src/Doc/lib libfuncs.tex,1.95,1.96

Fred L. Drake fdrake@users.sourceforge.net
Tue, 06 Nov 2001 22:28:49 -0800


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

Modified Files:
	libfuncs.tex 
Log Message:
When referring to a formal parameter from the description, use the name given
with the signature, not an ad hoc abbreviated form.


Index: libfuncs.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libfuncs.tex,v
retrieving revision 1.95
retrieving revision 1.96
diff -C2 -d -r1.95 -r1.96
*** libfuncs.tex	2001/11/07 06:22:25	1.95
--- libfuncs.tex	2001/11/07 06:28:47	1.96
***************
*** 73,77 ****
    to be added to the end of the the argument list.
    Calling \function{apply()} is different from just calling
!   \code{\var{func}(\var{args})}, since in that case there is always
    exactly one argument.  The use of \function{apply()} is equivalent
    to \code{\var{function}(*\var{args}, **\var{keywords})}.
--- 73,77 ----
    to be added to the end of the the argument list.
    Calling \function{apply()} is different from just calling
!   \code{\var{function}(\var{args})}, since in that case there is always
    exactly one argument.  The use of \function{apply()} is equivalent
    to \code{\var{function}(*\var{args}, **\var{keywords})}.