(self, other)
| 226 | return self |
| 227 | |
| 228 | def __eq__(self, other): |
| 229 | return type(self) is type(other) and \ |
| 230 | tuple(self.iter_fields()) == tuple(other.iter_fields()) |
| 231 | |
| 232 | def __ne__(self, other): |
| 233 | return not self.__eq__(other) |
no test coverage detected