summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeroen Ruigrok van der Werven <asmodai@in-nomine.org>2009-04-25 20:41:40 (GMT)
committerJeroen Ruigrok van der Werven <asmodai@in-nomine.org>2009-04-25 20:41:40 (GMT)
commitbe82d2f16f841bd275fb81bfbf6e6d7b0ca459ac (patch)
treed1abe3f4d8c275f59cb9a481ee1938140482e72d
parenta4c03abb9e1753931f2f8fc296733dd31b7c375d (diff)
downloadcpython-be82d2f16f841bd275fb81bfbf6e6d7b0ca459ac.zip
cpython-be82d2f16f841bd275fb81bfbf6e6d7b0ca459ac.tar.gz
cpython-be82d2f16f841bd275fb81bfbf6e6d7b0ca459ac.tar.bz2
Issue #4129: int -> Py_ssize_t documentation.
-rw-r--r--Doc/c-api/marshal.rst4
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/c-api/marshal.rst b/Doc/c-api/marshal.rst
index 5ecccc4..34a83f4 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.