diff options
author | Nadeem Vawda <nadeem.vawda@gmail.com> | 2011-05-14 12:29:07 (GMT) |
---|---|---|
committer | Nadeem Vawda <nadeem.vawda@gmail.com> | 2011-05-14 12:29:07 (GMT) |
commit | 0cc4fd9df7e2a6d6a47c20e66c5b22d590c6be51 (patch) | |
tree | 1f9553a5b486926d712b24f909bd55222d094724 /Misc | |
parent | 9b323a521c8612093ff1d23b25c4d9809601e1d6 (diff) | |
download | cpython-0cc4fd9df7e2a6d6a47c20e66c5b22d590c6be51.zip cpython-0cc4fd9df7e2a6d6a47c20e66c5b22d590c6be51.tar.gz cpython-0cc4fd9df7e2a6d6a47c20e66c5b22d590c6be51.tar.bz2 |
Issue #12050: zlib.decompressobj().decompress() now clears the unconsumed_tail
attribute when called without a max_length argument.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -80,6 +80,9 @@ Core and Builtins Library ------- +- Issue #12050: zlib.decompressobj().decompress() now clears the unconsumed_tail + attribute when called without a max_length argument. + - Issue #12062: In the `io` module, fix a flushing bug when doing a certain type of I/O sequence on a file opened in read+write mode (namely: reading, seeking a bit forward, writing, then seeking before the previous write but |