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

Method __eq__

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

Source from the content-addressed store, hash-verified

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)
550
551 def __ne__(self, other):
552 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