[Python-checkins] bpo-37134: Add PEP570 notation to the signature of byte{array}.translate (GH-13874)

Miss Islington (bot) webhook-mailer at python.org
Thu Jun 6 19:44:54 EDT 2019


https://github.com/python/cpython/commit/dba4448c63b687204813a5b04c89dd458d5ac45b
commit: dba4448c63b687204813a5b04c89dd458d5ac45b
branch: 3.8
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2019-06-06T16:44:50-07:00
summary:

bpo-37134: Add PEP570 notation to the signature of byte{array}.translate (GH-13874)

(cherry picked from commit de76c07a8cd0216c3dce215e4d542e2f45aa022f)

Co-authored-by: Pablo Galindo <Pablogsal at gmail.com>

files:
M Doc/library/stdtypes.rst

diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst
index fcb0da74e158..35a17a180809 100644
--- a/Doc/library/stdtypes.rst
+++ b/Doc/library/stdtypes.rst
@@ -2736,8 +2736,8 @@ arbitrary binary data.
    The prefix(es) to search for may be any :term:`bytes-like object`.
 
 
-.. method:: bytes.translate(table, delete=b'')
-            bytearray.translate(table, delete=b'')
+.. method:: bytes.translate(table, /, delete=b'')
+            bytearray.translate(table, /, delete=b'')
 
    Return a copy of the bytes or bytearray object where all bytes occurring in
    the optional argument *delete* are removed, and the remaining bytes have



More information about the Python-checkins mailing list