[Python-checkins] r43102 - python/branches/p3yk/Doc/api/abstract.tex

neal.norwitz python-checkins at python.org
Fri Mar 17 09:05:02 CET 2006


Author: neal.norwitz
Date: Fri Mar 17 09:04:59 2006
New Revision: 43102

Modified:
   python/branches/p3yk/Doc/api/abstract.tex
Log:
Remove apply()

Modified: python/branches/p3yk/Doc/api/abstract.tex
==============================================================================
--- python/branches/p3yk/Doc/api/abstract.tex	(original)
+++ python/branches/p3yk/Doc/api/abstract.tex	Fri Mar 17 09:04:59 2006
@@ -233,8 +233,7 @@
   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 @@
   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 @@
   \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}
 
 


More information about the Python-checkins mailing list