Object that is equal to anything.
| 2235 | |
| 2236 | |
| 2237 | class _ALWAYS_EQ: |
| 2238 | """ |
| 2239 | Object that is equal to anything. |
| 2240 | """ |
| 2241 | def __eq__(self, other): |
| 2242 | return True |
| 2243 | def __ne__(self, other): |
| 2244 | return False |
| 2245 | |
| 2246 | ALWAYS_EQ = _ALWAYS_EQ() |
| 2247 |
no outgoing calls
no test coverage detected
searching dependent graphs…