(self, other)
| 93 | self.items = items |
| 94 | |
| 95 | def is_other(self, other): |
| 96 | if other is not self: |
| 97 | return False |
| 98 | for i1, i2 in zip(self.items, other.items): |
| 99 | if i1 is not i2: |
| 100 | return False |
| 101 | return True |
| 102 | |
| 103 | __hash__ = ClauseElement.__hash__ |
| 104 |
no outgoing calls
no test coverage detected