Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/python/cpython
/ __ge__
Method
__ge__
Lib/_pydatetime.py:920–924 ·
view source on GitHub ↗
(self, other)
Source
from the content-addressed store, hash-verified
918
return
NotImplemented
919
920
def
__ge__(self, other):
921
if
isinstance(other, timedelta):
922
return
self._cmp(other) >= 0
923
else
:
924
return
NotImplemented
925
926
def
__gt__(self, other):
927
if
isinstance(other, timedelta):
Callers
nothing calls this directly
Calls
1
_cmp
Method · 0.95
Tested by
no test coverage detected