From 025f14b72d9d8da16754dbe926ab9a8401ce2b19 Mon Sep 17 00:00:00 2001 From: Neal Norwitz Date: Wed, 8 Mar 2006 05:29:18 +0000 Subject: [PATCH] Move version added tag from PyObject_Length/Size to PyNumber_Index. --- Doc/api/abstract.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/api/abstract.tex b/Doc/api/abstract.tex index 320275c406e..f01512c9e42 100644 --- a/Doc/api/abstract.tex +++ b/Doc/api/abstract.tex @@ -346,7 +346,6 @@ determination. either the sequence and mapping protocols, the sequence length is returned. On error, \code{-1} is returned. This is the equivalent to the Python expression \samp{len(\var{o})}.\bifuncindex{len} - \versionadded{2.5} \end{cfuncdesc} @@ -693,6 +692,7 @@ determination. \begin{cfuncdesc}{Py_ssize_t}{PyNumber_Index}{PyObject *o} Returns the \var{o} converted to a Py_ssize_t integer on success, or -1 with an exception raised on failure. + \versionadded{2.5} \end{cfuncdesc} \section{Sequence Protocol \label{sequence}}