MCPcopy Index your code
hub / github.com/python/cpython / __ge__

Method __ge__

Lib/asyncio/events.py:177–180  ·  view source on GitHub ↗
(self, other)

Source from the content-addressed store, hash-verified

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):

Callers

nothing calls this directly

Calls 1

__eq__Method · 0.95

Tested by

no test coverage detected