summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-08-27 08:35:02 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2016-08-27 08:35:02 (GMT)
commit1b6c6da85d7fd268825e09cc8ff339540c1f77bc (patch)
treec714a20ce1553644c721170044e55a43ee8a676b /Misc
parent8c3c52b19f6ded5593cfab1086051cb5f4628434 (diff)
downloadcpython-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/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 37c4420..8ae30e2 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.