(self, other: _PyCmp, fn_cmp: _Callable_cmp[..., _Any_cmp])
| 1314 | return fn_eq(self.key, other.key) |
| 1315 | |
| 1316 | def __ffi_compare__(self, other: _PyCmp, fn_cmp: _Callable_cmp[..., _Any_cmp]) -> int: |
| 1317 | return fn_cmp(self.key, other.key) |
| 1318 | |
| 1319 | |
| 1320 | def test_py_class_custom_eq_ignores_label() -> None: |
nothing calls this directly
no outgoing calls
no test coverage detected