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

Method __ge__

numpy/_utils/_pep440.py:149–150  ·  view source on GitHub ↗
(self, other)

Source from the content-addressed store, hash-verified

147 return self._compare(other, lambda s, o: s == o)
148
149 def __ge__(self, other):
150 return self._compare(other, lambda s, o: s >= o)
151
152 def __gt__(self, other):
153 return self._compare(other, lambda s, o: s > o)

Callers

nothing calls this directly

Calls 1

_compareMethod · 0.95

Tested by

no test coverage detected