diff options
author | Guido van Rossum <guido@python.org> | 2016-10-09 10:04:55 -0700 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2016-10-09 10:04:55 -0700 |
commit | a7652b768a5d2a2810122e379cd1fc48cf7b7ff6 (patch) | |
tree | 9f95e1d1c8ccb452a2986a8614cee34e69788b4b | |
parent | d4ea2ec38a6d51266425ef5a8947d4fb0772250c (diff) | |
parent | 06060725b49a3600264402e9b1059ed23b97adb9 (diff) | |
download | cpython-git-a7652b768a5d2a2810122e379cd1fc48cf7b7ff6.tar.gz |
Issue #28339: Remove ByteString.register(memoryview(...)) from typing.py. (merge 3.6->3.7)
-rw-r--r-- | Lib/typing.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Lib/typing.py b/Lib/typing.py index 557fa589ea..35d562e0b6 100644 --- a/Lib/typing.py +++ b/Lib/typing.py @@ -1668,9 +1668,6 @@ class ByteString(Sequence[int], extra=collections_abc.ByteString): __slots__ = () -ByteString.register(type(memoryview(b''))) - - class List(list, MutableSequence[T], extra=list): __slots__ = () |