[Python-checkins] r71927 - python/trunk/Doc/c-api/marshal.rst

jeroen.ruigrok python-checkins at python.org
Sat Apr 25 22:41:40 CEST 2009


Author: jeroen.ruigrok
Date: Sat Apr 25 22:41:40 2009
New Revision: 71927

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


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

Modified: python/trunk/Doc/c-api/marshal.rst
==============================================================================
--- python/trunk/Doc/c-api/marshal.rst	(original)
+++ python/trunk/Doc/c-api/marshal.rst	Sat Apr 25 22:41:40 2009
@@ -94,3 +94,7 @@
    containing *len* bytes pointed to by *string*.  On error, sets the
    appropriate exception (:exc:`EOFError` or :exc:`TypeError`) and returns
    *NULL*.
+
+   .. versionchanged:: 2.5
+      This function used an :ctype:`int` type for *len*. This might require
+      changes in your code for properly supporting 64-bit systems.


More information about the Python-checkins mailing list