summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-08-15 07:06:16 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-08-15 07:06:16 (GMT)
commit15f3228b7c35fb44f0024d9814172d49f472891b (patch)
treecc0690f4128442ec9df235f465d016b8f51039ca /Misc
parenteb24988962728b3edbd346ced938c4120e7e2eed (diff)
downloadcpython-15f3228b7c35fb44f0024d9814172d49f472891b.zip
cpython-15f3228b7c35fb44f0024d9814172d49f472891b.tar.gz
cpython-15f3228b7c35fb44f0024d9814172d49f472891b.tar.bz2
Issue #16764: Support keyword arguments to zlib.decompress(). Patch by
Xiang Zhang.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index a34289b..ea701fd 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ 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.