diff options
author | Fred Drake <fdrake@acm.org> | 2001-10-28 02:39:03 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2001-10-28 02:39:03 (GMT) |
commit | b0c079e3e5793290db8651ea4edbbf6d4ba18218 (patch) | |
tree | 6cd66c15270b6c26584334b111fa5d394ab12c51 /Doc/api/abstract.tex | |
parent | 86443216b71d3a2ae25561ab1288e8a03db594d2 (diff) | |
download | cpython-b0c079e3e5793290db8651ea4edbbf6d4ba18218.zip cpython-b0c079e3e5793290db8651ea4edbbf6d4ba18218.tar.gz cpython-b0c079e3e5793290db8651ea4edbbf6d4ba18218.tar.bz2 |
PyObject_CallFunctionObArgs() ---> PyObject_CallFunctionObjArgs()
PyObject_CallMethodObArgs() ---> PyObject_CallMethodObjArgs()
Diffstat (limited to 'Doc/api/abstract.tex')
-rw-r--r-- | Doc/api/abstract.tex | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Doc/api/abstract.tex b/Doc/api/abstract.tex index 2e85dac..3078e90 100644 --- a/Doc/api/abstract.tex +++ b/Doc/api/abstract.tex @@ -208,9 +208,9 @@ determination. \end{cfuncdesc} -\begin{cfuncdesc}{PyObject*}{PyObject_CallFunctionObArgs}{PyObject *callable, - \moreargs, - \code{NULL}} +\begin{cfuncdesc}{PyObject*}{PyObject_CallFunctionObjArgs}{PyObject *callable, + \moreargs, + \code{NULL}} Call a callable Python object \var{callable}, with a variable number of \ctype{PyObject*} arguments. The arguments are provided as a variable number of parameters followed by \NULL. @@ -219,10 +219,10 @@ determination. \end{cfuncdesc} -\begin{cfuncdesc}{PyObject*}{PyObject_CallMethodObArgs}{PyObject *o, - PyObject *name, - \moreargs, - \code{NULL}} +\begin{cfuncdesc}{PyObject*}{PyObject_CallMethodObjArgs}{PyObject *o, + PyObject *name, + \moreargs, + \code{NULL}} Calls a method of the object \var{o}, where the name of the method is given as a Python string object in \var{name}. It is called with a variable number of \ctype{PyObject*} arguments. The arguments are |