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

Method __ne__

numpy/lib/polynomial.py:1397–1400  ·  view source on GitHub ↗
(self, other)

Source from the content-addressed store, hash-verified

1395 return (self.coeffs == other.coeffs).all()
1396
1397 def __ne__(self, other):
1398 if not isinstance(other, poly1d):
1399 return NotImplemented
1400 return not self.__eq__(other)
1401
1402
1403 def __getitem__(self, val):

Callers

nothing calls this directly

Calls 1

__eq__Method · 0.95

Tested by

no test coverage detected