diff options
author | Nadeem Vawda <nadeem.vawda@gmail.com> | 2012-11-04 23:37:42 (GMT) |
---|---|---|
committer | Nadeem Vawda <nadeem.vawda@gmail.com> | 2012-11-04 23:37:42 (GMT) |
commit | 39079946a257522ecb66cb068c872f5d1fe70ea3 (patch) | |
tree | 4c5fe8fa06bde62f9d7cfff518d8c8b23040ac38 /Misc/NEWS | |
parent | 6c5f5210be9f68252b72d7b5e8dc2bde20d90c9d (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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. |