(self, other)
| 271 | self.offset = offset |
| 272 | |
| 273 | def __eq__(self, other): |
| 274 | if not isinstance(other, self.__class__): |
| 275 | return NotImplemented |
| 276 | return self.module == other.module and self.offset == other.offset |
| 277 | |
| 278 | def __ne__(self, other): |
| 279 | if not isinstance(other, self.__class__): |
nothing calls this directly
no outgoing calls
no test coverage detected