diff options
| author | Guido van Rossum <guido@python.org> | 2016-10-09 10:02:49 -0700 |
|---|---|---|
| committer | Guido van Rossum <guido@python.org> | 2016-10-09 10:02:49 -0700 |
| commit | 5e2a0ef2ee7aed59260556b5ea15f497cdc73f3b (patch) | |
| tree | e31d41f8dd1357ae8fef98928384e264769cc262 /Lib/typing.py | |
| parent | 4145c8380699f7af14ae15179e01652e25f0d102 (diff) | |
| download | cpython-git-5e2a0ef2ee7aed59260556b5ea15f497cdc73f3b.tar.gz | |
Issue #28339: Remove ByteString.register(memoryview(...)) from typing.py.
Diffstat (limited to 'Lib/typing.py')
| -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__ = () |
