(original) (raw)

changeset: 102739:ab0039b8a80e user: Serhiy Storchaka storchaka@gmail.com date: Thu Aug 18 09:14:47 2016 +0300 files: Lib/test/test_zlib.py Misc/NEWS description: Issue #16764: Move NEWS entry to correct section and remove too strict test. diff -r 617104a6b759 -r ab0039b8a80e Lib/test/test_zlib.py --- a/Lib/test/test_zlib.py Wed Aug 17 19:56:17 2016 -0400 +++ b/Lib/test/test_zlib.py Thu Aug 18 09:14:47 2016 +0300 @@ -173,10 +173,6 @@ 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 -r 617104a6b759 -r ab0039b8a80e Misc/NEWS --- a/Misc/NEWS Wed Aug 17 19:56:17 2016 -0400 +++ b/Misc/NEWS Thu Aug 18 09:14:47 2016 +0300 @@ -24,9 +24,6 @@ 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 @@ 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. /storchaka@gmail.com