(self, other)
| 1487 | # Comparisons of time objects with other. |
| 1488 | |
| 1489 | def __eq__(self, other): |
| 1490 | if isinstance(other, time): |
| 1491 | return self._cmp(other, allow_mixed=True) == 0 |
| 1492 | else: |
| 1493 | return NotImplemented |
| 1494 | |
| 1495 | def __le__(self, other): |
| 1496 | if isinstance(other, time): |
nothing calls this directly
no test coverage detected