MCPcopy Index your code
hub / github.com/python/cpython / _LARGEST

Class _LARGEST

Lib/test/support/__init__.py:2262–2269  ·  view source on GitHub ↗

Object that is greater than anything (except itself).

Source from the content-addressed store, hash-verified

2260
2261@functools.total_ordering
2262class _LARGEST:
2263 """
2264 Object that is greater than anything (except itself).
2265 """
2266 def __eq__(self, other):
2267 return isinstance(other, _LARGEST)
2268 def __lt__(self, other):
2269 return False
2270
2271LARGEST = _LARGEST()
2272

Callers 1

__init__.pyFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…