MCPcopy Create free account
hub / github.com/numpy/numpy / __ne__

Method __ne__

numpy/lib/_version.py:145–146  ·  view source on GitHub ↗
(self, other)

Source from the content-addressed store, hash-verified

143 return self._compare(other) == 0
144
145 def __ne__(self, other):
146 return self._compare(other) != 0
147
148 def __gt__(self, other):
149 return self._compare(other) > 0

Callers

nothing calls this directly

Calls 1

_compareMethod · 0.95

Tested by

no test coverage detected