]> granicus.if.org Git - python/commitdiff
Add a note about the zlib.decompressobj().flush() fix.
authorGregory P. Smith <greg@mad-scientist.com>
Wed, 9 Apr 2008 18:17:13 +0000 (18:17 +0000)
committerGregory P. Smith <greg@mad-scientist.com>
Wed, 9 Apr 2008 18:17:13 +0000 (18:17 +0000)
Misc/NEWS

index 7e161193a13bae48cbffb91ff6a15e39afa79799..357fa4f0cb00b7153cc6610b4579792a51377439 100644 (file)
--- 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.