(self, other)
| 169 | and self.index == other.index and self.hint == other.hint |
| 170 | |
| 171 | def __ne__(self, other): |
| 172 | if not isinstance(other, self.__class__): |
| 173 | return NotImplemented |
| 174 | return not (self == other) |
| 175 | |
| 176 | def __hash__(self): |
| 177 | return hash((self.name, self.value, self.width. self.index, self.hint)) |
nothing calls this directly
no outgoing calls
no test coverage detected