(self)
| 263 | return self._buf_err.decode('utf-8') |
| 264 | |
| 265 | def _unpack_exc(self): |
| 266 | if self._exc is not None: |
| 267 | return self._exc |
| 268 | if not self._buf_exc: |
| 269 | return None |
| 270 | self._exc = unpack_exception(self._buf_exc) |
| 271 | return self._exc |
| 272 | |
| 273 | def stdout(self): |
| 274 | if self.closed: |
no test coverage detected