(self, other)
| 235 | self.enabled = enabled |
| 236 | |
| 237 | def __eq__(self, other): |
| 238 | if not isinstance(other, self.__class__): |
| 239 | return NotImplemented |
| 240 | return self.module == other.module and self.offset == other.offset and self.address == other.address \ |
| 241 | and self.enabled == other.enabled |
| 242 | |
| 243 | def __ne__(self, other): |
| 244 | if not isinstance(other, self.__class__): |
nothing calls this directly
no outgoing calls
no test coverage detected