MCPcopy Index your code
hub / github.com/python/mypy / object

Class object

mypyc/test-data/fixtures/ir.py:41–51  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

39]
40
41class 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
53class type:
54 def __init__(self, o: object) -> None: ...

Callers 5

types.pyFile · 0.85
evalexpr.pyFile · 0.85
objgraph.pyFile · 0.85
func_ir.pyFile · 0.85
make_builderFunction · 0.85

Calls

no outgoing calls

Tested by 1

make_builderFunction · 0.68

Used in the wild real call sites across dependent graphs

searching dependent graphs…