Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/numpy/numpy
/ __gt__
Method
__gt__
numpy/_utils/_pep440.py:152–153 ·
view source on GitHub ↗
(self, other)
Source
from the content-addressed store, hash-verified
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)
154
155
def
__ne__(self, other):
156
return
self._compare(other,
lambda
s, o: s != o)
Callers
nothing calls this directly
Calls
1
_compare
Method · 0.95
Tested by
no test coverage detected