Object that is greater than anything (except itself).
| 2190 | |
| 2191 | @functools.total_ordering |
| 2192 | class _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 | |
| 2201 | LARGEST = _LARGEST() |
| 2202 |