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

Class _LARGEST

Lib/test/support/__init__.py:2192–2199  ·  view source on GitHub ↗

Object that is greater than anything (except itself).

Source from the content-addressed store, hash-verified

2190
2191@functools.total_ordering
2192class _LARGEST:
2193 """
2194 Object that is greater than anything (except itself).
2195 """
2196 def __eq__(self, other):
2197 return isinstance(other, _LARGEST)
2198 def __lt__(self, other):
2199 return False
2200
2201LARGEST = _LARGEST()
2202

Callers 1

__init__.pyFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected