(self)
| 934 | self._captured_err: AnyStr = self.captureclass.EMPTY_BUFFER |
| 935 | |
| 936 | def _start(self) -> None: |
| 937 | if self._capture is None: |
| 938 | self._capture = MultiCapture( |
| 939 | in_=None, |
| 940 | out=self.captureclass(1, **self._config), |
| 941 | err=self.captureclass(2, **self._config), |
| 942 | ) |
| 943 | self._capture.start_capturing() |
| 944 | |
| 945 | def close(self) -> None: |
| 946 | if self._capture is not None: |