(
stdout: bytes, returncode: int = 0, wait_exc: BaseException | None = None
)
| 109 | |
| 110 | |
| 111 | def _make_ok_process( |
| 112 | stdout: bytes, returncode: int = 0, wait_exc: BaseException | None = None |
| 113 | ) -> _FakePopen: |
| 114 | return _FakePopen(stdout=stdout, returncode=returncode, wait_exc=wait_exc) |
| 115 | |
| 116 | |
| 117 | # --------------------------------------------------------------------------- |
no test coverage detected