summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-03-21 02:22:50 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2011-03-21 02:22:50 (GMT)
commit451385d8f8e8bedd347d363fd0e01288226daee2 (patch)
tree3c7769aa1c730f5b02f9462293ffd69f5ef1b001 /Misc
parente788ace5abccfd89f94a28630d6e0019921fe2cb (diff)
downloadcpython-451385d8f8e8bedd347d363fd0e01288226daee2.zip
cpython-451385d8f8e8bedd347d363fd0e01288226daee2.tar.gz
cpython-451385d8f8e8bedd347d363fd0e01288226daee2.tar.bz2
Issue #8651: PyArg_Parse*() functions raise an OverflowError if the file
doesn't have PY_SSIZE_T_CLEAN define and the size doesn't fit in an int (length bigger than 2^31-1 bytes).
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 461afd7..fca77ef 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,10 @@ What's New in Python 3.1.4?
Core and Builtins
-----------------
+- Issue #8651: PyArg_Parse*() functions raise an OverflowError if the file
+ doesn't have PY_SSIZE_T_CLEAN define and the size doesn't fit in an int
+ (length bigger than 2^31-1 bytes).
+
- Issue #11450: Don't truncate hg version info in Py_GetBuildInfo() when
there are many tags (e.g. when using mq). Patch by Nadeem Vawda.