(
out: bool = True, err: bool = True, in_: bool = True
)
| 26 | |
| 27 | |
| 28 | def StdCaptureFD( |
| 29 | out: bool = True, err: bool = True, in_: bool = True |
| 30 | ) -> MultiCapture[str]: |
| 31 | return capture.MultiCapture( |
| 32 | in_=capture.FDCapture(0) if in_ else None, |
| 33 | out=capture.FDCapture(1) if out else None, |
| 34 | err=capture.FDCapture(2) if err else None, |
| 35 | ) |
| 36 | |
| 37 | |
| 38 | def StdCapture( |
no outgoing calls
no test coverage detected