MCPcopy Index your code
hub / github.com/saltstack/salt / __ge__

Method __ge__

salt/version.py:554–555  ·  view source on GitHub ↗
(self, other)

Source from the content-addressed store, hash-verified

552 return self.__compare__(other, lambda _self, _other: _self != _other)
553
554 def __ge__(self, other):
555 return self.__compare__(other, lambda _self, _other: _self >= _other)
556
557 def __gt__(self, other):
558 return self.__compare__(other, lambda _self, _other: _self > _other)

Callers

nothing calls this directly

Calls 1

__compare__Method · 0.95

Tested by

no test coverage detected