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

Method __ge__

Lib/_pydatetime.py:1527–1531  ·  view source on GitHub ↗
(self, other)

Source from the content-addressed store, hash-verified

1525 return NotImplemented
1526
1527 def __ge__(self, other):
1528 if isinstance(other, time):
1529 return self._cmp(other) >= 0
1530 else:
1531 return NotImplemented
1532
1533 def __gt__(self, other):
1534 if isinstance(other, time):

Callers

nothing calls this directly

Calls 1

_cmpMethod · 0.95

Tested by

no test coverage detected