cpython: ab0039b8a80e (original) (raw)
Mercurial > cpython
changeset 102739:ab0039b8a80e
Issue #16764: Move NEWS entry to correct section and remove too strict test. [#16764]
Serhiy Storchaka storchaka@gmail.com | |
---|---|
date | Thu, 18 Aug 2016 09:14:47 +0300 |
parents | 617104a6b759 |
children | 386acc82fed4 |
files | Lib/test/test_zlib.py Misc/NEWS |
diffstat | 2 files changed, 3 insertions(+), 7 deletions(-)[+] [-] Lib/test/test_zlib.py 4 Misc/NEWS 6 |
line wrap: on
line diff
--- a/Lib/test/test_zlib.py +++ b/Lib/test/test_zlib.py @@ -173,10 +173,6 @@ class CompressTestCase(BaseCompressTestC wbits=zlib.MAX_WBITS, bufsize=zlib.DEF_BUF_SIZE), HAMLET_SCENE)
with self.assertRaises(TypeError):[](#l1.7)
zlib.decompress(data=x,[](#l1.8)
wbits=zlib.MAX_WBITS,[](#l1.9)
bufsize=zlib.DEF_BUF_SIZE)[](#l1.10)
def test_speech128(self): # compress more data
--- 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