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

Method __lt__

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

Source from the content-addressed store, hash-verified

1519 return NotImplemented
1520
1521 def __lt__(self, other):
1522 if isinstance(other, time):
1523 return self._cmp(other) < 0
1524 else:
1525 return NotImplemented
1526
1527 def __ge__(self, other):
1528 if isinstance(other, time):

Callers

nothing calls this directly

Calls 1

_cmpMethod · 0.95

Tested by

no test coverage detected