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

Method __le__

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

Source from the content-addressed store, hash-verified

543 return self.__compare__(other, lambda _self, _other: _self < _other)
544
545 def __le__(self, other):
546 return self.__compare__(other, lambda _self, _other: _self <= _other)
547
548 def __eq__(self, other):
549 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