Collection is Sized (#8977)

This commit is contained in:
Nikita Sobolev
2022-10-25 16:08:28 +03:00
committed by GitHub
parent e15e007d75
commit 5bbba5d008
2 changed files with 2 additions and 5 deletions

View File

@@ -805,7 +805,7 @@ class bytearray(MutableSequence[int], ByteString):
def __alloc__(self) -> int: ...
@final
class memoryview(Sized, Sequence[int]):
class memoryview(Sequence[int]):
@property
def format(self) -> str: ...
@property