(self, other)
| 80 | return self.tid == other.tid and self.rip == other.rip |
| 81 | |
| 82 | def __ne__(self, other): |
| 83 | if not isinstance(other, self.__class__): |
| 84 | return NotImplemented |
| 85 | return not (self == other) |
| 86 | |
| 87 | def __hash__(self): |
| 88 | return hash((self.tid, self.rip)) |
nothing calls this directly
no outgoing calls
no test coverage detected