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

Method __ge__

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

Source from the content-addressed store, hash-verified

1200 return NotImplemented
1201
1202 def __ge__(self, other):
1203 if isinstance(other, date) and not isinstance(other, datetime):
1204 return self._cmp(other) >= 0
1205 return NotImplemented
1206
1207 def __gt__(self, other):
1208 if isinstance(other, date) and not isinstance(other, datetime):

Callers

nothing calls this directly

Calls 1

_cmpMethod · 0.95

Tested by

no test coverage detected