(self, other)
| 163 | self.hint = hint |
| 164 | |
| 165 | def __eq__(self, other): |
| 166 | if not isinstance(other, self.__class__): |
| 167 | return NotImplemented |
| 168 | return self.name == other.name and self.value == other.value and self.width == other.width \ |
| 169 | and self.index == other.index and self.hint == other.hint |
| 170 | |
| 171 | def __ne__(self, other): |
| 172 | if not isinstance(other, self.__class__): |
nothing calls this directly
no outgoing calls
no test coverage detected