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