(self, other: _PyEqHash, fn_eq: _Callable_cmp[..., _Any_cmp])
| 1299 | return fn_hash(self.key) |
| 1300 | |
| 1301 | def __ffi_eq__(self, other: _PyEqHash, fn_eq: _Callable_cmp[..., _Any_cmp]) -> bool: |
| 1302 | return fn_eq(self.key, other.key) |
| 1303 | |
| 1304 | |
| 1305 | @_py_class_cmp(_unique_key_cmp("PyCmp")) |
nothing calls this directly
no outgoing calls
no test coverage detected