(self)
| 3074 | return params, kwo_params, self.return_annotation |
| 3075 | |
| 3076 | def __hash__(self): |
| 3077 | params, kwo_params, return_annotation = self._hash_basis() |
| 3078 | kwo_params = frozenset(kwo_params.values()) |
| 3079 | return hash((params, kwo_params, return_annotation)) |
| 3080 | |
| 3081 | def __eq__(self, other): |
| 3082 | if self is other: |
nothing calls this directly
no test coverage detected