(self, module, offset)
| 267 | |
| 268 | """ |
| 269 | def __init__(self, module, offset): |
| 270 | self.module = module |
| 271 | self.offset = offset |
| 272 | |
| 273 | def __eq__(self, other): |
| 274 | if not isinstance(other, self.__class__): |
nothing calls this directly
no outgoing calls
no test coverage detected