diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-01-04 02:07:36 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-01-04 02:07:36 (GMT) |
commit | 8848c7a37f929b471267bd893f91c3b818fafce0 (patch) | |
tree | 97223d6efa9969ed747b756a5c6c5288fbb7892b /Misc | |
parent | b3c9e073fc7b93529ceb0af520d148385e6f63f7 (diff) | |
download | cpython-8848c7a37f929b471267bd893f91c3b818fafce0.zip cpython-8848c7a37f929b471267bd893f91c3b818fafce0.tar.gz cpython-8848c7a37f929b471267bd893f91c3b818fafce0.tar.bz2 |
Issue #8650: zlib.compress() and zlib.decompress() raise an OverflowError if
the input buffer length doesn't fit into an unsigned int (length bigger than
2^32-1 bytes).
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -30,6 +30,10 @@ Core and Builtins Library ------- +- Issue #8650: zlib.compress() and zlib.decompress() raise an OverflowError if + the input buffer length doesn't fit into an unsigned int (length bigger than + 2^32-1 bytes). + - Issue #6643: Reinitialize locks held within the threading module after fork to avoid a potential rare deadlock or crash on some platforms. |