Object that is greater than anything (except itself).
| 2260 | |
| 2261 | @functools.total_ordering |
| 2262 | class _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 | |
| 2271 | LARGEST = _LARGEST() |
| 2272 |
no outgoing calls
no test coverage detected
searching dependent graphs…