(self)
| 3045 | return params, kwo_params, self.return_annotation |
| 3046 | |
| 3047 | def __hash__(self): |
| 3048 | params, kwo_params, return_annotation = self._hash_basis() |
| 3049 | kwo_params = frozenset(kwo_params.values()) |
| 3050 | return hash((params, kwo_params, return_annotation)) |
| 3051 | |
| 3052 | def __eq__(self, other): |
| 3053 | if self is other: |
nothing calls this directly
no test coverage detected