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

Method __le__

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

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

__eq__Method · 0.95

Tested by

no test coverage detected