diff options
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/api/abstract.tex | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Doc/api/abstract.tex b/Doc/api/abstract.tex index f19928f..b38bc91 100644 --- a/Doc/api/abstract.tex +++ b/Doc/api/abstract.tex @@ -830,6 +830,13 @@ determination. and that \var{i} is within bounds. \end{cfuncdesc} +\begin{cfuncdesc}{PyObject**}{PySequence_Fast_ITEMS}{PyObject *o} + Return the underlying array of PyObject pointers. Assumes that + \var{o} was returned by \cfunction{PySequence_Fast()} and + \var{o} is not \NULL. + \versionadded{2.4} +\end{cfuncdesc} + \begin{cfuncdesc}{PyObject*}{PySequence_ITEM}{PyObject *o, int i} Return the \var{i}th element of \var{o} or \NULL{} on failure. Macro form of \cfunction{PySequence_GetItem()} but without checking |