diff options
Diffstat (limited to 'Lib/string.py')
-rw-r--r-- | Lib/string.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/string.py b/Lib/string.py index 6117ac0..7f67abd 100644 --- a/Lib/string.py +++ b/Lib/string.py @@ -53,7 +53,7 @@ def maketrans(frm: bytes, to: bytes) -> bytes: raise ValueError("maketrans arguments must have same length") if not (isinstance(frm, bytes) and isinstance(to, bytes)): raise TypeError("maketrans arguments must be bytes objects") - L = buffer(range(256)) + L = bytearray(range(256)) for i, c in enumerate(frm): L[c] = to[i] return bytes(L) |