MCPcopy Create free account
hub / github.com/RT-Thread/env-windows / __ge__

Method __ge__

tools/python-3.11.9-amd64/Lib/datetime.py:2124–2130  ·  view source on GitHub ↗
(self, other)

Source from the content-addressed store, hash-verified

2122 _cmperror(self, other)
2123
2124 def __ge__(self, other):
2125 if isinstance(other, datetime):
2126 return self._cmp(other) >= 0
2127 elif not isinstance(other, date):
2128 return NotImplemented
2129 else:
2130 _cmperror(self, other)
2131
2132 def __gt__(self, other):
2133 if isinstance(other, datetime):

Callers

nothing calls this directly

Calls 2

_cmpMethod · 0.95
_cmperrorFunction · 0.85

Tested by

no test coverage detected