Commit 989df09d authored by Serhiy Storchaka's avatar Serhiy Storchaka

Issue #16764: Move NEWS entry to correct section and remove too strict test.

parent e09594d5
...@@ -173,10 +173,6 @@ class CompressTestCase(BaseCompressTestCase, unittest.TestCase): ...@@ -173,10 +173,6 @@ class CompressTestCase(BaseCompressTestCase, unittest.TestCase):
wbits=zlib.MAX_WBITS, wbits=zlib.MAX_WBITS,
bufsize=zlib.DEF_BUF_SIZE), bufsize=zlib.DEF_BUF_SIZE),
HAMLET_SCENE) HAMLET_SCENE)
with self.assertRaises(TypeError):
zlib.decompress(data=x,
wbits=zlib.MAX_WBITS,
bufsize=zlib.DEF_BUF_SIZE)
def test_speech128(self): def test_speech128(self):
# compress more data # compress more data
......
...@@ -24,9 +24,6 @@ What's New in Python 3.6.0 alpha 4 ...@@ -24,9 +24,6 @@ What's New in Python 3.6.0 alpha 4
Core and Builtins 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 - Issue #27704: Optimized creating bytes and bytearray from byte-like objects
and iterables. Speed up to 3 times for short objects. Original patch by and iterables. Speed up to 3 times for short objects. Original patch by
Naoki Inada. Naoki Inada.
...@@ -71,6 +68,9 @@ Core and Builtins ...@@ -71,6 +68,9 @@ Core and Builtins
Library Library
------- -------
- Issue #16764: Support keyword arguments to zlib.decompress(). Patch by
Xiang Zhang.
- Issue #27736: Prevent segfault after interpreter re-initialization due - Issue #27736: Prevent segfault after interpreter re-initialization due
to ref count problem introduced in code for Issue #27038 in 3.6.0a3. to ref count problem introduced in code for Issue #27038 in 3.6.0a3.
Patch by Xiang Zhang. Patch by Xiang Zhang.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment