Object that is equal to anything.
| 2165 | |
| 2166 | |
| 2167 | class _ALWAYS_EQ: |
| 2168 | """ |
| 2169 | Object that is equal to anything. |
| 2170 | """ |
| 2171 | def __eq__(self, other): |
| 2172 | return True |
| 2173 | def __ne__(self, other): |
| 2174 | return False |
| 2175 | |
| 2176 | ALWAYS_EQ = _ALWAYS_EQ() |
| 2177 |