Object that is less than anything (except itself).
| 2272 | |
| 2273 | @functools.total_ordering |
| 2274 | class _SMALLEST: |
| 2275 | """ |
| 2276 | Object that is less than anything (except itself). |
| 2277 | """ |
| 2278 | def __eq__(self, other): |
| 2279 | return isinstance(other, _SMALLEST) |
| 2280 | def __gt__(self, other): |
| 2281 | return False |
| 2282 | |
| 2283 | SMALLEST = _SMALLEST() |
| 2284 |
no outgoing calls
no test coverage detected
searching dependent graphs…