(
args, # type: Sequence[str]
**kwargs # type: Any
)
| 62 | |
| 63 | |
| 64 | def check_output( |
| 65 | args, # type: Sequence[str] |
| 66 | **kwargs # type: Any |
| 67 | ): |
| 68 | # type: (...) -> bytes |
| 69 | return cast(bytes, subprocess.check_output(args=_safe_args(args), **kwargs)) |
| 70 | |
| 71 | |
| 72 | class Popen(subprocess.Popen): |
nothing calls this directly
no test coverage detected