MCPcopy Index your code
hub / github.com/RustPython/RustPython / __le__

Method __le__

Lib/uuid.py:309–312  ·  view source on GitHub ↗
(self, other)

Source from the content-addressed store, hash-verified

307 return NotImplemented
308
309 def __le__(self, other):
310 if isinstance(other, UUID):
311 return self.int <= other.int
312 return NotImplemented
313
314 def __ge__(self, other):
315 if isinstance(other, UUID):

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