summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-05-11 23:36:40 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-05-11 23:36:40 (GMT)
commitc09c92fd81b05db4e5bfe5322f038ca1727fcde0 (patch)
treea718262c0622f5de7890e672c04e0c12df81386b /Misc
parent2d067c8138ce2cf0dd8a49ea69aa5bf1be31080b (diff)
downloadcpython-c09c92fd81b05db4e5bfe5322f038ca1727fcde0.zip
cpython-c09c92fd81b05db4e5bfe5322f038ca1727fcde0.tar.gz
cpython-c09c92fd81b05db4e5bfe5322f038ca1727fcde0.tar.bz2
Merged revisions 81094 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r81094 | antoine.pitrou | 2010-05-12 01:32:31 +0200 (mer., 12 mai 2010) | 6 lines Issue #8672: Add a zlib test ensuring that an incomplete stream can be handled by a decompressor object without errors (it returns incomplete uncompressed data). ........
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index cd1ed07..a351c80 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -1276,6 +1276,10 @@ Documentation
Tests
-----
+- Issue #8672: Add a zlib test ensuring that an incomplete stream can be
+ handled by a decompressor object without errors (it returns incomplete
+ uncompressed data).
+
- Issue #8533: regrtest uses backslashreplace error handler for stdout to avoid
UnicodeEncodeError (write non-ASCII character to stdout using ASCII encoding)