From be82d2f16f841bd275fb81bfbf6e6d7b0ca459ac Mon Sep 17 00:00:00 2001 From: Jeroen Ruigrok van der Werven Date: Sat, 25 Apr 2009 20:41:40 +0000 Subject: [PATCH] Issue #4129: int -> Py_ssize_t documentation. --- Doc/c-api/marshal.rst | 4 ++++ 1 file changed, 4 insertions(+) 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. -- 2.50.0