]> granicus.if.org Git - python/commitdiff
The type for ppos has been Py_ssize_t since 2.5, reflect this in the
authorJeroen Ruigrok van der Werven <asmodai@in-nomine.org>
Sat, 25 Apr 2009 14:27:00 +0000 (14:27 +0000)
committerJeroen Ruigrok van der Werven <asmodai@in-nomine.org>
Sat, 25 Apr 2009 14:27:00 +0000 (14:27 +0000)
documentation.

Doc/c-api/dict.rst

index 76f64057ab81b50a3ba93defc05cf78bb43f98f7..6f6705b5ffbc9011b4a5f73f1fce5c71f1994f06 100644 (file)
@@ -146,7 +146,7 @@ Dictionary Objects
 
 .. cfunction:: int PyDict_Next(PyObject *p, Py_ssize_t *ppos, PyObject **pkey, PyObject **pvalue)
 
-   Iterate over all key-value pairs in the dictionary *p*.  The :ctype:`int`
+   Iterate over all key-value pairs in the dictionary *p*.  The :ctype:`Py_ssize_t`
    referred to by *ppos* must be initialized to ``0`` prior to the first call
    to this function to start the iteration; the function returns true for each
    pair in the dictionary, and false once all pairs have been reported.  The