Add missing dunder overrides in array, tracemalloc and unittest.mock (#7248)

This commit is contained in:
Alex Waygood
2022-02-17 12:22:33 +00:00
committed by GitHub
parent 5c309e5fe4
commit 1f6c691322
3 changed files with 6 additions and 3 deletions

View File

@@ -94,6 +94,7 @@ class _Call(tuple[Any, ...]):
def __ne__(self, __other: object) -> bool: ...
def __call__(self, *args: Any, **kwargs: Any) -> _Call: ...
def __getattr__(self, attr: Any) -> Any: ...
def __getattribute__(self, attr: str) -> Any: ...
if sys.version_info >= (3, 8):
@property
def args(self): ...