(self, other)
| 288 | return self.offset < other.offset |
| 289 | |
| 290 | def __gt__(self, other): |
| 291 | if self.module > other.module: |
| 292 | return True |
| 293 | elif self.module < other.module: |
| 294 | return False |
| 295 | return self.offset > other.offset |
| 296 | |
| 297 | def __hash__(self): |
| 298 | return hash((self.module, self.offset)) |
nothing calls this directly
no outgoing calls
no test coverage detected