summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorNadeem Vawda <nadeem.vawda@gmail.com>2012-11-04 23:37:42 (GMT)
committerNadeem Vawda <nadeem.vawda@gmail.com>2012-11-04 23:37:42 (GMT)
commit39079946a257522ecb66cb068c872f5d1fe70ea3 (patch)
tree4c5fe8fa06bde62f9d7cfff518d8c8b23040ac38 /Misc/NEWS
parent6c5f5210be9f68252b72d7b5e8dc2bde20d90c9d (diff)
downloadcpython-39079946a257522ecb66cb068c872f5d1fe70ea3.zip
cpython-39079946a257522ecb66cb068c872f5d1fe70ea3.tar.gz
cpython-39079946a257522ecb66cb068c872f5d1fe70ea3.tar.bz2
Issue #16350: Fix zlib decompressor handling of unused_data with multiple calls to decompress() after EOF.
Patch by Serhiy Storchaka.
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 bb1d6f7..a7f0521 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -156,6 +156,10 @@ Core and Builtins
Library
-------
+- Issue #16350: zlib.Decompress.decompress() now accumulates data from
+ successive calls after EOF in unused_data, instead of only saving the argument
+ to the last call. Patch by Serhiy Storchaka.
+
- Issue #12759: sre_parse now raises a proper error when the name of the group
is missing. Initial patch by Serhiy Storchaka.