(self, other)
| 276 | return self.module == other.module and self.offset == other.offset |
| 277 | |
| 278 | def __ne__(self, other): |
| 279 | if not isinstance(other, self.__class__): |
| 280 | return NotImplemented |
| 281 | return not (self == other) |
| 282 | |
| 283 | def __lt__(self, other): |
| 284 | if self.module < other.module: |
nothing calls this directly
no outgoing calls
no test coverage detected