| 39 | ] |
| 40 | |
| 41 | class object: |
| 42 | __class__: type |
| 43 | __dict__: dict[str, Any] |
| 44 | def __new__(cls) -> Self: pass |
| 45 | def __init__(self) -> None: pass |
| 46 | def __init_subclass__(cls, **kwargs: object) -> None: pass |
| 47 | def __eq__(self, x: object) -> bool: pass |
| 48 | def __ne__(self, x: object) -> bool: pass |
| 49 | def __str__(self) -> str: pass |
| 50 | def __setattr__(self, k: str, v: object) -> None: pass |
| 51 | def __delattr__(self, k: str) -> None: pass |
| 52 | |
| 53 | class type: |
| 54 | def __init__(self, o: object) -> None: ... |
no outgoing calls
searching dependent graphs…