(self, other)
| 1499 | return NotImplemented |
| 1500 | |
| 1501 | def __lt__(self, other): |
| 1502 | if isinstance(other, time): |
| 1503 | return self._cmp(other) < 0 |
| 1504 | else: |
| 1505 | return NotImplemented |
| 1506 | |
| 1507 | def __ge__(self, other): |
| 1508 | if isinstance(other, time): |
nothing calls this directly
no test coverage detected