[Python-checkins] r71929 - python/trunk/Doc/c-api/objbuffer.rst

jeroen.ruigrok python-checkins at python.org
Sat Apr 25 22:44:59 CEST 2009


Author: jeroen.ruigrok
Date: Sat Apr 25 22:44:58 2009
New Revision: 71929

Log:
Issue #4129: int -> Py_ssize_t documentation.


Modified:
   python/trunk/Doc/c-api/objbuffer.rst

Modified: python/trunk/Doc/c-api/objbuffer.rst
==============================================================================
--- python/trunk/Doc/c-api/objbuffer.rst	(original)
+++ python/trunk/Doc/c-api/objbuffer.rst	Sat Apr 25 22:44:58 2009
@@ -23,6 +23,10 @@
 
    .. versionadded:: 1.6
 
+   .. 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)
 
@@ -34,6 +38,10 @@
 
    .. versionadded:: 1.6
 
+   .. 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)
 
@@ -52,3 +60,7 @@
 
    .. versionadded:: 1.6
 
+   .. 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.
+


More information about the Python-checkins mailing list