(self, other)
| 281 | return not (self == other) |
| 282 | |
| 283 | def __lt__(self, other): |
| 284 | if self.module < other.module: |
| 285 | return True |
| 286 | elif self.module > other.module: |
| 287 | return False |
| 288 | return self.offset < other.offset |
| 289 | |
| 290 | def __gt__(self, other): |
| 291 | if self.module > other.module: |
nothing calls this directly
no outgoing calls
no test coverage detected