Commit 485dbd10 authored by Georg Brandl's avatar Georg Brandl

Add a x-ref to newer calling APIs.

parent 964e02a9
......@@ -260,6 +260,8 @@ determination.
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})}.
Note that if you only pass \ctype{PyObject *} args,
\cfunction{PyObject_CallFunctionObjArgs} is a faster alternative.
\bifuncindex{apply}
\end{cfuncdesc}
......@@ -274,6 +276,8 @@ determination.
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{\var{o}.\var{method}(\var{args})}.
Note that if you only pass \ctype{PyObject *} args,
\cfunction{PyObject_CallMethodObjArgs} is a faster alternative.
\end{cfuncdesc}
......
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