Commit 051aa773 authored by Georg Brandl's avatar Georg Brandl

Backport r58542.

parent dd4b025a
...@@ -1280,13 +1280,11 @@ bypass these functions without concerns about missing something important. ...@@ -1280,13 +1280,11 @@ bypass these functions without concerns about missing something important.
to be added to the end of the argument list. to be added to the end of the argument list.
Calling \function{apply()} is different from just calling Calling \function{apply()} is different from just calling
\code{\var{function}(\var{args})}, since in that case there is always \code{\var{function}(\var{args})}, since in that case there is always
exactly one argument. The use of \function{apply()} is equivalent exactly one argument. The use of \function{apply()} is exactly
to \code{\var{function}(*\var{args}, **\var{keywords})}. 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.
\deprecated{2.3}{Use the extended call syntax instead, as described \deprecated{2.3}{Use the extended call syntax with \code{*args}
above.} and \code{**keywords} instead.}
\end{funcdesc} \end{funcdesc}
\begin{funcdesc}{buffer}{object\optional{, offset\optional{, size}}} \begin{funcdesc}{buffer}{object\optional{, offset\optional{, size}}}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment