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

Method __gt__

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

Source from the content-addressed store, hash-verified

1531 return NotImplemented
1532
1533 def __gt__(self, other):
1534 if isinstance(other, time):
1535 return self._cmp(other) > 0
1536 else:
1537 return NotImplemented
1538
1539 def _cmp(self, other, allow_mixed=False):
1540 assert isinstance(other, time)

Callers

nothing calls this directly

Calls 1

_cmpMethod · 0.95

Tested by

no test coverage detected