summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorNadeem Vawda <nadeem.vawda@gmail.com>2012-11-04 23:38:48 (GMT)
committerNadeem Vawda <nadeem.vawda@gmail.com>2012-11-04 23:38:48 (GMT)
commit519f43844babca8bb23cfc2cd0ba9f5ee0b26034 (patch)
tree0f59159b07393ff15c890bbfb1dd9f2a32e6fa6e /Misc
parentab60de478d70650a7a786d0d4a10ef6dcf1c2880 (diff)
parent39079946a257522ecb66cb068c872f5d1fe70ea3 (diff)
downloadcpython-519f43844babca8bb23cfc2cd0ba9f5ee0b26034.zip
cpython-519f43844babca8bb23cfc2cd0ba9f5ee0b26034.tar.gz
cpython-519f43844babca8bb23cfc2cd0ba9f5ee0b26034.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')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 73d6e37..63baa0d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -77,6 +77,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.