diff options
Diffstat (limited to 'Doc/c-api/objbuffer.rst')
-rw-r--r-- | Doc/c-api/objbuffer.rst | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/Doc/c-api/objbuffer.rst b/Doc/c-api/objbuffer.rst index e816c3d..0973aad 100644 --- a/Doc/c-api/objbuffer.rst +++ b/Doc/c-api/objbuffer.rst @@ -14,10 +14,6 @@ Buffer Protocol and *buffer_len* to the buffer length. Returns ``-1`` and sets a :exc:`TypeError` on error. - .. versionchanged:: 2.5 - This function used an :ctype:`int *` type for *buffer_len*. This might - require changes in your code for properly supporting 64-bit systems. - .. cfunction:: int PyObject_AsReadBuffer(PyObject *obj, const void **buffer, Py_ssize_t *buffer_len) @@ -27,10 +23,6 @@ Buffer Protocol and *buffer_len* to the buffer length. Returns ``-1`` and sets a :exc:`TypeError` on error. - .. versionchanged:: 2.5 - This function used an :ctype:`int *` type for *buffer_len*. This might - require changes in your code for properly supporting 64-bit systems. - .. cfunction:: int PyObject_CheckReadBuffer(PyObject *o) @@ -45,7 +37,3 @@ Buffer Protocol returns ``0``, sets *buffer* to the memory location and *buffer_len* to the buffer length. Returns ``-1`` and sets a :exc:`TypeError` on error. - .. versionchanged:: 2.5 - This function used an :ctype:`int *` type for *buffer_len*. This might - require changes in your code for properly supporting 64-bit systems. - |