Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 989df09

Browse files
Issue #16764: Move NEWS entry to correct section and remove too strict test.
1 parent e09594d commit 989df09

2 files changed

Lines changed: 3 additions & 7 deletions

File tree

Lib/test/test_zlib.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -173,10 +173,6 @@ def test_keywords(self):
173173
wbits=zlib.MAX_WBITS,
174174
bufsize=zlib.DEF_BUF_SIZE),
175175
HAMLET_SCENE)
176-
with self.assertRaises(TypeError):
177-
zlib.decompress(data=x,
178-
wbits=zlib.MAX_WBITS,
179-
bufsize=zlib.DEF_BUF_SIZE)
180176

181177
def test_speech128(self):
182178
# compress more data

Misc/NEWS

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,6 @@ What's New in Python 3.6.0 alpha 4
2424
Core and Builtins
2525
-----------------
2626

27-
- Issue #16764: Support keyword arguments to zlib.decompress(). Patch by
28-
Xiang Zhang.
29-
3027
- Issue #27704: Optimized creating bytes and bytearray from byte-like objects
3128
and iterables. Speed up to 3 times for short objects. Original patch by
3229
Naoki Inada.
@@ -71,6 +68,9 @@ Core and Builtins
7168
Library
7269
-------
7370

71+
- Issue #16764: Support keyword arguments to zlib.decompress(). Patch by
72+
Xiang Zhang.
73+
7474
- Issue #27736: Prevent segfault after interpreter re-initialization due
7575
to ref count problem introduced in code for Issue #27038 in 3.6.0a3.
7676
Patch by Xiang Zhang.

0 commit comments

Comments
 (0)