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

Method __ge__

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

Source from the content-addressed store, hash-verified

2278 return NotImplemented
2279
2280 def __ge__(self, other):
2281 if isinstance(other, datetime):
2282 return self._cmp(other) >= 0
2283 else:
2284 return NotImplemented
2285
2286 def __gt__(self, other):
2287 if isinstance(other, datetime):

Callers

nothing calls this directly

Calls 1

_cmpMethod · 0.95

Tested by

no test coverage detected