Annotate known magic-method return types (#9131)

This commit is contained in:
Nikita Sobolev
2022-11-08 21:28:42 +03:00
committed by GitHub
parent c0e9038f0d
commit 62a6c3d616
87 changed files with 172 additions and 172 deletions
+4 -4
View File
@@ -12,14 +12,14 @@ class CDispatch:
lazydata: Incomplete | None = ...,
) -> None: ...
def __call__(self, *args): ...
def __bool__(self): ...
def __bool__(self) -> bool: ...
def __dir__(self): ...
def __eq__(self, other): ...
def __ne__(self, other): ...
def __int__(self): ...
def __len__(self): ...
def __int__(self) -> int: ...
def __len__(self) -> int: ...
def __getitem__(self, index): ...
def __setitem__(self, index, *args): ...
def __setitem__(self, index, *args) -> None: ...
def __LazyMap__(self, attr): ...
def __AttrToID__(self, attr): ...
ob: Incomplete