mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 04:54:47 +08:00
@@ -795,6 +795,7 @@ class memoryview(Sized, Container[_mv_container_type]):
|
||||
ndim: int
|
||||
|
||||
if sys.version_info >= (3,):
|
||||
obj: Union[bytes, bytearray]
|
||||
c_contiguous: bool
|
||||
f_contiguous: bool
|
||||
contiguous: bool
|
||||
@@ -802,6 +803,7 @@ class memoryview(Sized, Container[_mv_container_type]):
|
||||
def __init__(self, obj: Union[bytes, bytearray, memoryview]) -> None: ...
|
||||
def __enter__(self) -> memoryview: ...
|
||||
def __exit__(self, exc_type: Optional[Type[BaseException]], exc_val: Optional[BaseException], exc_tb: Optional[TracebackType]) -> None: ...
|
||||
def cast(self, format: str, shape: Union[List[int], Tuple[int]] = ...): ...
|
||||
else:
|
||||
def __init__(self, obj: Union[bytes, bytearray, buffer, memoryview]) -> None: ...
|
||||
|
||||
|
||||
Reference in New Issue
Block a user