(
out: bool = True, err: bool = True, in_: bool = True
)
| 41 | |
| 42 | |
| 43 | def StdCapture( |
| 44 | out: bool = True, err: bool = True, in_: bool = True |
| 45 | ) -> MultiCapture[str]: |
| 46 | return capture.MultiCapture( |
| 47 | in_=capture.SysCapture(0) if in_ else None, |
| 48 | out=capture.SysCapture(1) if out else None, |
| 49 | err=capture.SysCapture(2) if err else None, |
| 50 | ) |
| 51 | |
| 52 | |
| 53 | def TeeStdCapture( |
no outgoing calls
no test coverage detected
searching dependent graphs…