From: Jeroen Ruigrok van der Werven Date: Sat, 25 Apr 2009 20:41:40 +0000 (+0000) Subject: Issue #4129: int -> Py_ssize_t documentation. X-Git-Tag: v2.7a1~1387 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=be82d2f16f841bd275fb81bfbf6e6d7b0ca459ac;p=python Issue #4129: int -> Py_ssize_t documentation. --- diff --git a/Doc/c-api/marshal.rst b/Doc/c-api/marshal.rst index 5ecccc41d8..34a83f40bf 100644 --- a/Doc/c-api/marshal.rst +++ b/Doc/c-api/marshal.rst @@ -94,3 +94,7 @@ written using these routines? 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.