summaryrefslogtreecommitdiff
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-05-03 15:09:24 +0200
committerVictor Stinner <victor.stinner@haypocalc.com>2011-05-03 15:09:24 +0200
commitdad799a67fc236d46345486343ecc7c230914846 (patch)
treef86e268f0df232ee8485e549bd92b85eabe430e5 /Misc/NEWS
parent5007157405174244518d54904b75bfd97d3e6811 (diff)
downloadcpython-dad799a67fc236d46345486343ecc7c230914846.tar.gz
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/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index e26b6ca316..b14a6cb627 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -9,6 +9,10 @@ What's New in Python 2.7.2?
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 #8651: Fix "z#" format of PyArg_Parse*() function: the size was not
written if PY_SSIZE_T_CLEAN is defined.