(self, other)
| 81 | |
| 82 | class DBAPISet(frozenset): |
| 83 | def __ne__(self, other): |
| 84 | if isinstance(other, set): |
| 85 | return frozenset.__ne__(self, other) |
| 86 | else: |
| 87 | return other not in self |
| 88 | |
| 89 | def __eq__(self, other): |
| 90 | if isinstance(other, frozenset): |
nothing calls this directly
no outgoing calls
no test coverage detected