| 989 | |
| 990 | @_py_class_hash(_unique_key_hash("PyCustomHash")) |
| 991 | class _PyCustomHash(_Object_hash): |
| 992 | key: int |
| 993 | label: str |
| 994 | |
| 995 | def __ffi_hash__(self, fn_hash: _Callable_hash[..., _Any_hash]) -> int: |
| 996 | return fn_hash(self.key) |
| 997 | |
| 998 | |
| 999 | def test_py_class_custom_hash_ignores_label() -> None: |
no outgoing calls