Document PySequence_Size(), and describe PySequence_Length() as simply an
alternate name for the same function.
This commit is contained in:
parent
e3850f5b6c
commit
c6a3cb4baf
|
@ -1876,13 +1876,17 @@ Return \code{1} if the object provides sequence protocol, and
|
||||||
\code{0} otherwise. This function always succeeds.
|
\code{0} otherwise. This function always succeeds.
|
||||||
\end{cfuncdesc}
|
\end{cfuncdesc}
|
||||||
|
|
||||||
\begin{cfuncdesc}{int}{PySequence_Length}{PyObject *o}
|
\begin{cfuncdesc}{int}{PySequence_Size}{PyObject *o}
|
||||||
Returns the number of objects in sequence \var{o} on success, and
|
Returns the number of objects in sequence \var{o} on success, and
|
||||||
\code{-1} on failure. For objects that do not provide sequence
|
\code{-1} on failure. For objects that do not provide sequence
|
||||||
protocol, this is equivalent to the Python expression
|
protocol, this is equivalent to the Python expression
|
||||||
\samp{len(\var{o})}.\bifuncindex{len}
|
\samp{len(\var{o})}.\bifuncindex{len}
|
||||||
\end{cfuncdesc}
|
\end{cfuncdesc}
|
||||||
|
|
||||||
|
\begin{cfuncdesc}{int}{PySequence_Length}{PyObject *o}
|
||||||
|
Alternate name for \cfunction{PySequence_Size()}.
|
||||||
|
\end{cfuncdesc}
|
||||||
|
|
||||||
\begin{cfuncdesc}{PyObject*}{PySequence_Concat}{PyObject *o1, PyObject *o2}
|
\begin{cfuncdesc}{PyObject*}{PySequence_Concat}{PyObject *o1, PyObject *o2}
|
||||||
Return the concatenation of \var{o1} and \var{o2} on success, and \NULL{} on
|
Return the concatenation of \var{o1} and \var{o2} on success, and \NULL{} on
|
||||||
failure. This is the equivalent of the Python
|
failure. This is the equivalent of the Python
|
||||||
|
|
Loading…
Reference in New Issue