A helper object that compares equal to everything.
| 2524 | |
| 2525 | |
| 2526 | class _ANY(object): |
| 2527 | "A helper object that compares equal to everything." |
| 2528 | |
| 2529 | def __eq__(self, other): |
| 2530 | return True |
| 2531 | |
| 2532 | def __ne__(self, other): |
| 2533 | return False |
| 2534 | |
| 2535 | def __repr__(self): |
| 2536 | return '<ANY>' |
| 2537 | |
| 2538 | ANY = _ANY() |
| 2539 |
no outgoing calls
no test coverage detected
searching dependent graphs…