(self, other)
| 100 | __hash__ = None |
| 101 | |
| 102 | def __eq__(self, other): |
| 103 | a = _split_and_sort(self.string) |
| 104 | b = _split_and_sort(other) |
| 105 | if a == b: |
| 106 | return True |
| 107 | self.explanation = _make_explanation(a, b) |
| 108 | return False |
| 109 | |
| 110 | |
| 111 | class Capture: |
nothing calls this directly
no test coverage detected