(self, other: t.Any)
| 236 | return self |
| 237 | |
| 238 | def __eq__(self, other: t.Any) -> bool: |
| 239 | if type(self) is not type(other): |
| 240 | return NotImplemented |
| 241 | |
| 242 | return tuple(self.iter_fields()) == tuple(other.iter_fields()) |
| 243 | |
| 244 | __hash__ = object.__hash__ |
| 245 |
nothing calls this directly
no test coverage detected