summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2016-01-21 06:25:40 (GMT)
committerBenjamin Peterson <benjamin@python.org>2016-01-21 06:25:40 (GMT)
commit2b0b5ac5a0935dd0deb30c129fc117640d409ac6 (patch)
treee3d79d33835228062ab8340610f0d668bddb6b90 /Misc
parentba77788bba7ab0b8e2ea50f2c3b30a471b18f941 (diff)
parent47b8ba22e304fa136563c803f5f0cc589e8be1ac (diff)
downloadcpython-2b0b5ac5a0935dd0deb30c129fc117640d409ac6.zip
cpython-2b0b5ac5a0935dd0deb30c129fc117640d409ac6.tar.gz
cpython-2b0b5ac5a0935dd0deb30c129fc117640d409ac6.tar.bz2
merge 3.5 (#26171)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 8c6864c..01e933c 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -140,6 +140,9 @@ Core and Builtins
converted to normal strings at run time. Given x=3, then
f'value={x}' == 'value=3'. Patch by Eric V. Smith.
+- Issue #26171: Fix possible integer overflow and heap corruption in
+ zipimporter.get_data().
+
Library
-------