(self, a: int, b: str)
| 5057 | b: str |
| 5058 | |
| 5059 | def __init__(self, a: int, b: str) -> None: |
| 5060 | # For py_class, __new__ already allocated via __ffi_new__. |
| 5061 | # No need to call super().__init__() — just set fields directly. |
| 5062 | self.a = a |
| 5063 | self.b = b |
| 5064 | |
| 5065 | obj = Leaf(5, "hi") |
| 5066 | assert obj.a == 5 |
nothing calls this directly
no outgoing calls
no test coverage detected