(self, other)
| 165 | return NotImplemented |
| 166 | |
| 167 | def __le__(self, other): |
| 168 | if isinstance(other, TimerHandle): |
| 169 | return self._when < other._when or self.__eq__(other) |
| 170 | return NotImplemented |
| 171 | |
| 172 | def __gt__(self, other): |
| 173 | if isinstance(other, TimerHandle): |