diff options
author | Gregory P. Smith <greg@mad-scientist.com> | 2008-04-09 18:17:13 +0000 |
---|---|---|
committer | Gregory P. Smith <greg@mad-scientist.com> | 2008-04-09 18:17:13 +0000 |
commit | f616766710af0dc0387ef37ed6d47f68b1759631 (patch) | |
tree | b95ef904bb175ef7db058e0fc49e63a997865f4a | |
parent | b72e0d969ec2ecb6417bcc31194631d24c201dc2 (diff) | |
download | cpython-f616766710af0dc0387ef37ed6d47f68b1759631.tar.gz |
Add a note about the zlib.decompressobj().flush() fix.
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -34,6 +34,9 @@ Core and builtins Library ------- +- zlib.decompressobj().flush(value) no longer crashes the interpreter when + passed a value less than or equal to zero. + - Issue #2495: tokenize.untokenize now inserts a space between two consecutive string literals; previously, ["" ""] was rendered as [""""], which is incorrect python code. |