memoryview: add cast, obj attribute (#3598)

Fixes #3594
This commit is contained in:
Shantanu
2020-01-09 15:57:17 -08:00
committed by Jelle Zijlstra
parent e0151e724a
commit 61600d6877
2 changed files with 4 additions and 0 deletions

View File

@@ -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: ...