(self, other)
| 75 | self.rip = rip |
| 76 | |
| 77 | def __eq__(self, other): |
| 78 | if not isinstance(other, self.__class__): |
| 79 | return NotImplemented |
| 80 | return self.tid == other.tid and self.rip == other.rip |
| 81 | |
| 82 | def __ne__(self, other): |
| 83 | if not isinstance(other, self.__class__): |
nothing calls this directly
no outgoing calls
no test coverage detected