(self)
| 277 | return self._unpack_stdout() |
| 278 | |
| 279 | def stderr(self): |
| 280 | if self.closed: |
| 281 | return self.final().stderr |
| 282 | self._capture() |
| 283 | return self._unpack_stderr() |
| 284 | |
| 285 | def exc(self): |
| 286 | if self.closed: |
nothing calls this directly
no test coverage detected