Object that is not equal to anything.
| 2246 | ALWAYS_EQ = _ALWAYS_EQ() |
| 2247 | |
| 2248 | class _NEVER_EQ: |
| 2249 | """ |
| 2250 | Object that is not equal to anything. |
| 2251 | """ |
| 2252 | def __eq__(self, other): |
| 2253 | return False |
| 2254 | def __ne__(self, other): |
| 2255 | return True |
| 2256 | def __hash__(self): |
| 2257 | return 1 |
| 2258 | |
| 2259 | NEVER_EQ = _NEVER_EQ() |
| 2260 |
no outgoing calls
no test coverage detected
searching dependent graphs…