diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-08-15 07:06:16 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-08-15 07:06:16 (GMT) |
commit | 15f3228b7c35fb44f0024d9814172d49f472891b (patch) | |
tree | cc0690f4128442ec9df235f465d016b8f51039ca /Misc | |
parent | eb24988962728b3edbd346ced938c4120e7e2eed (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |