(self)
| 430 | return self.__class__.__name__ |
| 431 | |
| 432 | def __str__(self): |
| 433 | return "<%s PID: %s (%s)>" % (self.__class_name(), self.__get_pid(), |
| 434 | ' '.join(self.cmd)) |
| 435 | |
| 436 | def __repr__(self): |
| 437 | return str(self) |
nothing calls this directly
no test coverage detected