(self)
| 339 | return not (self == other) |
| 340 | |
| 341 | def __hash__(self): |
| 342 | return hash((self.index, self.pc, self.sp, self.fp, self.func_name, self.func_start, self.module)) |
| 343 | |
| 344 | def __setattr__(self, name, value): |
| 345 | try: |
nothing calls this directly
no outgoing calls
no test coverage detected