(self, other)
| 241 | and self.enabled == other.enabled |
| 242 | |
| 243 | def __ne__(self, other): |
| 244 | if not isinstance(other, self.__class__): |
| 245 | return NotImplemented |
| 246 | return not (self == other) |
| 247 | |
| 248 | def __hash__(self): |
| 249 | return hash((self.module, self.offset, self.address. self.enabled)) |
nothing calls this directly
no outgoing calls
no test coverage detected