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