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

Method __ne__

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

Source from the content-addressed store, hash-verified

549 return self.__compare__(other, lambda _self, _other: _self == _other)
550
551 def __ne__(self, other):
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)

Callers

nothing calls this directly

Calls 1

__compare__Method · 0.95

Tested by

no test coverage detected