diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2010-05-07 16:50:34 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2010-05-07 16:50:34 (GMT) |
commit | 3843cd8e86673ce8969c6e948cd15735168882d3 (patch) | |
tree | 50bde3198b1e1ddb3382c8d12859b7ccfb3eac6c /Misc | |
parent | 4fedbce55a41126f34e18f3ccf8d51960dda5d75 (diff) | |
download | cpython-3843cd8e86673ce8969c6e948cd15735168882d3.zip cpython-3843cd8e86673ce8969c6e948cd15735168882d3.tar.gz cpython-3843cd8e86673ce8969c6e948cd15735168882d3.tar.bz2 |
Issue #8571: Fix an internal error when compressing or decompressing a
chunk larger than 1GB with the zlib module's compressor and decompressor
objects.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -41,6 +41,10 @@ Core and Builtins Library ------- +- Issue #8571: Fix an internal error when compressing or decompressing a + chunk larger than 1GB with the zlib module's compressor and decompressor + objects. + - Issue #8573: asyncore _strerror() function might throw ValueError. - Issue #8483: asyncore.dispatcher's __getattr__ method produced confusing |