diff options
author | Martin Panter <vadmium+py@gmail.com> | 2016-08-27 08:35:02 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2016-08-27 08:35:02 (GMT) |
commit | 1b6c6da85d7fd268825e09cc8ff339540c1f77bc (patch) | |
tree | c714a20ce1553644c721170044e55a43ee8a676b /Misc | |
parent | 8c3c52b19f6ded5593cfab1086051cb5f4628434 (diff) | |
download | cpython-1b6c6da85d7fd268825e09cc8ff339540c1f77bc.zip cpython-1b6c6da85d7fd268825e09cc8ff339540c1f77bc.tar.gz cpython-1b6c6da85d7fd268825e09cc8ff339540c1f77bc.tar.bz2 |
Issue #27506: Support bytes/bytearray.translate() delete as keyword argument
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 beta 1 Core and Builtins ----------------- +- Issue #27506: Support passing the bytes/bytearray.translate() "delete" + argument by keyword. + - Issue #27587: Fix another issue found by PVS-Studio: Null pointer check after use of 'def' in _PyState_AddModule(). Initial patch by Christian Heimes. |