commit | 5e2a0ef2ee7aed59260556b5ea15f497cdc73f3b | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Sun Oct 09 10:02:49 2016 -0700 |
committer | Guido van Rossum <guido@python.org> | Sun Oct 09 10:02:49 2016 -0700 |
tree | e31d41f8dd1357ae8fef98928384e264769cc262 | |
parent | 4145c8380699f7af14ae15179e01652e25f0d102 [diff] |
Issue #28339: Remove ByteString.register(memoryview(...)) from typing.py.
diff --git a/Lib/typing.py b/Lib/typing.py index 557fa58..35d562e 100644 --- a/Lib/typing.py +++ b/Lib/typing.py
@@ -1668,9 +1668,6 @@ __slots__ = () -ByteString.register(type(memoryview(b''))) - - class List(list, MutableSequence[T], extra=list): __slots__ = ()