(self, other)
| 175 | return NotImplemented |
| 176 | |
| 177 | def __ge__(self, other): |
| 178 | if isinstance(other, TimerHandle): |
| 179 | return self._when > other._when or self.__eq__(other) |
| 180 | return NotImplemented |
| 181 | |
| 182 | def __eq__(self, other): |
| 183 | if isinstance(other, TimerHandle): |