summaryrefslogtreecommitdiffstats
path: root/Doc/api
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2002-05-23 16:02:28 (GMT)
committerFred Drake <fdrake@acm.org>2002-05-23 16:02:28 (GMT)
commit86228e4ca2cc864a622dc16849763a7e6207711b (patch)
treed8cd9e026a84296cf59c5f8b7f957bcf8bceb598 /Doc/api
parentbf9cb3ff1a16ef71888a27a1bec7caa08cda7c44 (diff)
downloadcpython-86228e4ca2cc864a622dc16849763a7e6207711b.zip
cpython-86228e4ca2cc864a622dc16849763a7e6207711b.tar.gz
cpython-86228e4ca2cc864a622dc16849763a7e6207711b.tar.bz2
Add version annotation for PySequence_ITEM().
Diffstat (limited to 'Doc/api')
-rw-r--r--Doc/api/abstract.tex3
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/api/abstract.tex b/Doc/api/abstract.tex
index e4f299d..a7fba71 100644
--- a/Doc/api/abstract.tex
+++ b/Doc/api/abstract.tex
@@ -769,7 +769,8 @@ determination.
Return the \var{i}th element of \var{o} or \NULL on failure.
Macro form of \cfunction{PySequence_GetItem()} but without checking
that \cfunction{PySequence_Check(\var{o})} is true and without
- adjustment for negative indices.
+ adjustment for negative indices.
+ \versionadded{2.3}
\end{cfuncdesc}
\begin{cfuncdesc}{int}{PySequence_Fast_GET_SIZE}{PyObject *o}