mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-05-19 23:09:55 +08:00
Annotate known magic-method return types (#9131)
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user