(self, other)
| 1493 | return NotImplemented |
| 1494 | |
| 1495 | def __le__(self, other): |
| 1496 | if isinstance(other, time): |
| 1497 | return self._cmp(other) <= 0 |
| 1498 | else: |
| 1499 | return NotImplemented |
| 1500 | |
| 1501 | def __lt__(self, other): |
| 1502 | if isinstance(other, time): |
nothing calls this directly
no test coverage detected