diff options
Diffstat (limited to 'Doc/c-api/object.rst')
-rw-r--r-- | Doc/c-api/object.rst | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Doc/c-api/object.rst b/Doc/c-api/object.rst index 108b1be..b0700a1 100644 --- a/Doc/c-api/object.rst +++ b/Doc/c-api/object.rst @@ -304,10 +304,6 @@ is considered sufficient for this determination. and mapping protocols, the sequence length is returned. On error, ``-1`` is returned. This is the equivalent to the Python expression ``len(o)``. - .. versionchanged:: 2.5 - These functions returned an :ctype:`int` type. This might require - changes in your code for properly supporting 64-bit systems. - .. cfunction:: PyObject* PyObject_GetItem(PyObject *o, PyObject *key) |