[Python-checkins] r43704 - python/trunk/Doc/api/concrete.tex (original) (raw)
georg.brandl python-checkins at python.org
Thu Apr 6 14:45:52 CEST 2006
- Previous message: [Python-checkins] r43703 - peps/trunk/pep-3001.txt
- Next message: [Python-checkins] r43705 - python/branches/release24-maint/Doc/api/concrete.tex
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Author: georg.brandl Date: Thu Apr 6 14:45:51 2006 New Revision: 43704
Modified: python/trunk/Doc/api/concrete.tex Log: Bug #1464658: make clear that PyList_GetItem doesn't take negative indices.
Modified: python/trunk/Doc/api/concrete.tex
--- python/trunk/Doc/api/concrete.tex (original) +++ python/trunk/Doc/api/concrete.tex Thu Apr 6 14:45:51 2006 @@ -1803,8 +1803,9 @@
\begin{cfuncdesc}{PyObject*}{PyList_GetItem}{PyObject *list, Py_ssize_t index} Return the object at position \var{pos} in the list pointed to by
- \var{p}. If \var{pos} is out of bounds, return \NULL{} and set an
- \exception{IndexError} exception.
- \var{p}. The position must be positive, indexing from the end of the
- list is not supported. If \var{pos} is out of bounds, return \NULL{}
- and set an \exception{IndexError} exception. \end{cfuncdesc}
\begin{cfuncdesc}{PyObject*}{PyList_GET_ITEM}{PyObject *list, Py_ssize_t i}
- Previous message: [Python-checkins] r43703 - peps/trunk/pep-3001.txt
- Next message: [Python-checkins] r43705 - python/branches/release24-maint/Doc/api/concrete.tex
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]