[Python-checkins] python/dist/src/Doc/lib libfuncs.tex,1.113,1.114

fdrake@users.sourceforge.net fdrake@users.sourceforge.net
Thu, 22 Aug 2002 07:27:37 -0700


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

Modified Files:
	libfuncs.tex 
Log Message:
Add a note that apply() is needed since the extended call syntax is
completely equivalent.


Index: libfuncs.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libfuncs.tex,v
retrieving revision 1.113
retrieving revision 1.114
diff -C2 -d -r1.113 -r1.114
*** libfuncs.tex	19 Aug 2002 21:43:18 -0000	1.113
--- libfuncs.tex	22 Aug 2002 14:27:35 -0000	1.114
***************
*** 76,79 ****
--- 76,81 ----
    exactly one argument.  The use of \function{apply()} is equivalent
    to \code{\var{function}(*\var{args}, **\var{keywords})}.
+   Use of \function{apply()} is not necessary since the ``extended call
+   syntax,'' as used in the last example, is completely equivalent.
  \end{funcdesc}