summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-05-11 23:32:31 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-05-11 23:32:31 (GMT)
commit37ffc3e3ba18d0e54ea6f79e9c8aad94f0b41a7d (patch)
tree1c91496d025bbf7d665f1ea98aebb9505110761a /Misc
parentb9bf97132d2bd1819e49d2d53c7fa0309b14bb07 (diff)
downloadcpython-37ffc3e3ba18d0e54ea6f79e9c8aad94f0b41a7d.zip
cpython-37ffc3e3ba18d0e54ea6f79e9c8aad94f0b41a7d.tar.gz
cpython-37ffc3e3ba18d0e54ea6f79e9c8aad94f0b41a7d.tar.bz2
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 a09d535..e46162d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -216,6 +216,10 @@ Extension Modules
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 #8490: asyncore now has a more solid test suite which actually tests
its API.