(self, other)
| 37 | return NotImplemented |
| 38 | |
| 39 | def __eq__(self, other): return self._richcmp(other, operator.eq) |
| 40 | def __le__(self, other): return self._richcmp(other, operator.le) |
| 41 | def __lt__(self, other): return self._richcmp(other, operator.lt) |
| 42 | def __ge__(self, other): return self._richcmp(other, operator.ge) |