summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-07-23 03:39:49 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2016-07-23 03:39:49 (GMT)
commit525a949251686a9f8c795f0166797700ac56b77b (patch)
tree5461fc3fefec32d2540d7ae2663154880865d204 /Misc
parent5d0c59838223ce46a6e2b90a7d3ed48ee1ac481e (diff)
parent84544c1020241afdd0422449d621ce9b762cb6d1 (diff)
downloadcpython-525a949251686a9f8c795f0166797700ac56b77b.zip
cpython-525a949251686a9f8c795f0166797700ac56b77b.tar.gz
cpython-525a949251686a9f8c795f0166797700ac56b77b.tar.bz2
Issue #27130: Merge zlib 64-bit fixes from 3.5
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index c4cc660..b545920 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -26,6 +26,11 @@ Core and Builtins
Library
-------
+- Issue #27130: In the "zlib" module, fix handling of large buffers
+ (typically 4 GiB) when compressing and decompressing. Previously, inputs
+ were limited to 4 GiB, and compression and decompression operations did not
+ properly handle results of 4 GiB.
+
- Issue #24773: Implemented PEP 495 (Local Time Disambiguation).
- Expose the EPOLLEXCLUSIVE constant (when it is defined) in the select module.