Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/RustPython/RustPython
/ __ge__
Method
__ge__
Lib/uuid.py:314–317 ·
view source on GitHub ↗
(self, other)
Source
from the content-addressed store, hash-verified
312
return
NotImplemented
313
314
def
__ge__(self, other):
315
if
isinstance(other, UUID):
316
return
self.int >= other.int
317
return
NotImplemented
318
319
def
__hash__(self):
320
return
hash(self.int)
Callers
6
builtin_bytearray.py
File · 0.45
builtin_object.py
File · 0.45
builtin_range.py
File · 0.45
builtin_bytes.py
File · 0.45
builtin_none.py
File · 0.45
builtin_int.py
File · 0.45
Calls
1
isinstance
Function · 0.85
Tested by
no test coverage detected