diff --git a/stdlib/2/__builtin__.pyi b/stdlib/2/__builtin__.pyi index 03e77bd33..bf12fc093 100644 --- a/stdlib/2/__builtin__.pyi +++ b/stdlib/2/__builtin__.pyi @@ -784,6 +784,7 @@ class memoryview(Sized, Container[_mv_container_type]): c_contiguous: bool f_contiguous: bool contiguous: bool + nbytes: int 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]) -> bool: ... diff --git a/stdlib/2and3/builtins.pyi b/stdlib/2and3/builtins.pyi index 03e77bd33..bf12fc093 100644 --- a/stdlib/2and3/builtins.pyi +++ b/stdlib/2and3/builtins.pyi @@ -784,6 +784,7 @@ class memoryview(Sized, Container[_mv_container_type]): c_contiguous: bool f_contiguous: bool contiguous: bool + nbytes: int 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]) -> bool: ...