Object that is not equal to anything.
| 2176 | ALWAYS_EQ = _ALWAYS_EQ() |
| 2177 | |
| 2178 | class _NEVER_EQ: |
| 2179 | """ |
| 2180 | Object that is not equal to anything. |
| 2181 | """ |
| 2182 | def __eq__(self, other): |
| 2183 | return False |
| 2184 | def __ne__(self, other): |
| 2185 | return True |
| 2186 | def __hash__(self): |
| 2187 | return 1 |
| 2188 | |
| 2189 | NEVER_EQ = _NEVER_EQ() |
| 2190 |