commit | 3782da4e0a0bec3def64eda045d76bd1943ccaf1 | [log] [tgz] |
---|---|---|
author | Gregory P. Smith <greg@mad-scientist.com> | Wed Apr 09 18:17:13 2008 +0000 |
committer | Gregory P. Smith <greg@mad-scientist.com> | Wed Apr 09 18:17:13 2008 +0000 |
tree | f3529c4524487110ae63492c2736e7bf74438a71 | |
parent | f62346775911d56b5440ec7fd699b749f5106436 [diff] [blame] |
Add a note about the zlib.decompressobj().flush() fix.
diff --git a/Misc/NEWS b/Misc/NEWS index 7e16119..357fa4f 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -34,6 +34,9 @@ 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.