(self, other)
| 37 | self.name = name |
| 38 | |
| 39 | def __eq__(self, other): |
| 40 | if not isinstance(other, self.__class__): |
| 41 | return NotImplemented |
| 42 | return self.pid == other.pid and self.name == other.name |
| 43 | |
| 44 | def __ne__(self, other): |
| 45 | if not isinstance(other, self.__class__): |
nothing calls this directly
no outgoing calls
no test coverage detected