(self)
| 615 | |
| 616 | @property |
| 617 | def exception(self): |
| 618 | if self._pconn.poll(): |
| 619 | self._exception = self._pconn.recv() |
| 620 | if self._exception is None: |
| 621 | return None |
| 622 | else: |
| 623 | return self._exception.exc_type(self._exception.exc_msg) |
| 624 | |
| 625 | # ESRCH means that os.kill can't finds alive proc |
| 626 | def send_signal(self, signum, ignore_ESRCH=False): |
no test coverage detected