summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2006-03-17 08:04:59 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2006-03-17 08:04:59 (GMT)
commit28ad48ee0a048e0f3a0d9a8462c29956f943110f (patch)
tree33569ad57cddc3ef62486fcbe7164c055e335451 /Doc
parentd91085598f5185b267ea51a3f615da9527af2ed2 (diff)
downloadcpython-28ad48ee0a048e0f3a0d9a8462c29956f943110f.zip
cpython-28ad48ee0a048e0f3a0d9a8462c29956f943110f.tar.gz
cpython-28ad48ee0a048e0f3a0d9a8462c29956f943110f.tar.bz2
Remove apply()
Diffstat (limited to 'Doc')
-rw-r--r--Doc/api/abstract.tex9
1 files changed, 3 insertions, 6 deletions
diff --git a/Doc/api/abstract.tex b/Doc/api/abstract.tex
index e1c3901..f50ebc4 100644
--- a/Doc/api/abstract.tex
+++ b/Doc/api/abstract.tex
@@ -233,8 +233,7 @@ determination.
be \NULL{}. \var{args} must not be \NULL{}, use an empty tuple if
no arguments are needed. Returns the result of the call on success,
or \NULL{} on failure. This is the equivalent of the Python
- expression \samp{apply(\var{callable_object}, \var{args}, \var{kw})}
- or \samp{\var{callable_object}(*\var{args}, **\var{kw})}.
+ expression \samp{\var{callable_object}(*\var{args}, **\var{kw})}.
\versionadded{2.2}
\end{cfuncdesc}
@@ -245,8 +244,7 @@ determination.
given by the tuple \var{args}. If no arguments are needed, then
\var{args} may be \NULL. Returns the result of the call on
success, or \NULL{} on failure. This is the equivalent of the
- Python expression \samp{apply(\var{callable_object}, \var{args})} or
- \samp{\var{callable_object}(*\var{args})}.
+ Python expression \samp{\var{callable_object}(*\var{args})}.
\end{cfuncdesc}
\begin{cfuncdesc}{PyObject*}{PyObject_CallFunction}{PyObject *callable,
@@ -256,8 +254,7 @@ determination.
\cfunction{Py_BuildValue()} style format string. The format may be
\NULL, indicating that no arguments are provided. Returns the
result of the call on success, or \NULL{} on failure. This is the
- equivalent of the Python expression \samp{apply(\var{callable},
- \var{args})} or \samp{\var{callable}(*\var{args})}.
+ equivalent of the Python expression \samp{\var{callable}(*\var{args})}.
\end{cfuncdesc}