]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Backport r58542.
authorGeorg Brandl <georg@python.org>
Fri, 19 Oct 2007 12:34:20 +0000 (12:34 +0000)
committerGeorg Brandl <georg@python.org>
Fri, 19 Oct 2007 12:34:20 +0000 (12:34 +0000)
Doc/lib/libfuncs.tex

index 345074d8b5e059fa7ad778a29085c5dd3e844669..4cfd6dca10b6e7edfe834b96a52a667290a5b3d5 100644 (file)
@@ -1280,13 +1280,11 @@ bypass these functions without concerns about missing something important.
   to be added to the end of 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})}.
-  Use of \function{apply()} is not necessary since the ``extended call
-  syntax,'' as used in the last example, is completely equivalent.
+  exactly one argument.  The use of \function{apply()} is exactly
+  equivalent to \code{\var{function}(*\var{args}, **\var{keywords})}.
 
-  \deprecated{2.3}{Use the extended call syntax instead, as described
-                   above.}
+  \deprecated{2.3}{Use the extended call syntax with \code{*args}
+  and \code{**keywords} instead.}
 \end{funcdesc}
 
 \begin{funcdesc}{buffer}{object\optional{, offset\optional{, size}}}