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
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.
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.