From 989df09db23f2e7588a9e88c6d05611d3c411582 Mon Sep 17 00:00:00 2001 From: Serhiy Storchaka Date: Thu, 18 Aug 2016 09:14:47 +0300 Subject: Issue #16764: Move NEWS entry to correct section and remove too strict test. --- Lib/test/test_zlib.py | 4 ---- Misc/NEWS | 6 +++--- 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/Lib/test/test_zlib.py b/Lib/test/test_zlib.py index 4d72d6f..20174d8 100644 --- a/Lib/test/test_zlib.py +++ b/Lib/test/test_zlib.py @@ -173,10 +173,6 @@ class CompressTestCase(BaseCompressTestCase, unittest.TestCase): wbits=zlib.MAX_WBITS, bufsize=zlib.DEF_BUF_SIZE), HAMLET_SCENE) - with self.assertRaises(TypeError): - zlib.decompress(data=x, - wbits=zlib.MAX_WBITS, - bufsize=zlib.DEF_BUF_SIZE) def test_speech128(self): # compress more data diff --git a/Misc/NEWS b/Misc/NEWS index efa0f76..2246f22 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -24,9 +24,6 @@ What's New in Python 3.6.0 alpha 4 Core and Builtins ----------------- -- Issue #16764: Support keyword arguments to zlib.decompress(). Patch by - Xiang Zhang. - - Issue #27704: Optimized creating bytes and bytearray from byte-like objects and iterables. Speed up to 3 times for short objects. Original patch by Naoki Inada. @@ -71,6 +68,9 @@ Core and Builtins Library ------- +- Issue #16764: Support keyword arguments to zlib.decompress(). Patch by + Xiang Zhang. + - Issue #27736: Prevent segfault after interpreter re-initialization due to ref count problem introduced in code for Issue #27038 in 3.6.0a3. Patch by Xiang Zhang. -- cgit v0.12