(self, encoding=None)
| 998 | return self.captured_output.stdout(encoding) |
| 999 | |
| 1000 | def captured_stderr(self, encoding=None): |
| 1001 | assert self.debuggee is not None |
| 1002 | return self.captured_output.stderr(encoding) |
| 1003 | |
| 1004 | def disconnect(self, force=False): |
| 1005 | if self.channel is None: |