From: Gregory P. Smith Date: Wed, 9 Apr 2008 18:17:13 +0000 (+0000) Subject: Add a note about the zlib.decompressobj().flush() fix. X-Git-Tag: v2.5.3c1~109 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3782da4e0a0bec3def64eda045d76bd1943ccaf1;p=python Add a note about the zlib.decompressobj().flush() fix. --- diff --git a/Misc/NEWS b/Misc/NEWS index 7e161193a1..357fa4f0cb 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -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.