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

Method __le__

numpy/ma/core.py:4198–4199  ·  view source on GitHub ↗
(self, other)

Source from the content-addressed store, hash-verified

4196
4197 # All other comparisons:
4198 def __le__(self, other):
4199 return self._comparison(other, operator.le)
4200
4201 def __lt__(self, other):
4202 return self._comparison(other, operator.lt)

Callers

nothing calls this directly

Calls 1

_comparisonMethod · 0.95

Tested by

no test coverage detected