MCPcopy 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_object.pyFile · 0.45
builtin_range.pyFile · 0.45
builtin_bytes.pyFile · 0.45
builtin_none.pyFile · 0.45
builtin_int.pyFile · 0.45

Calls 1

isinstanceFunction · 0.85

Tested by

no test coverage detected