Structural inequality.
(self, other: object)
| 245 | return _ffi_api.RecursiveEq(self, other) |
| 246 | |
| 247 | def __ne__(self, other: object) -> bool: |
| 248 | """Structural inequality.""" |
| 249 | result = self.__eq__(other) |
| 250 | if result is NotImplemented: |
| 251 | return NotImplemented |
| 252 | return not result |
| 253 | |
| 254 | def __hash__(self) -> int: |
| 255 | """Structural hash.""" |