MCPcopy
hub / github.com/pex-tool/pex / check_output

Function check_output

testing/subprocess.py:64–69  ·  view source on GitHub ↗
(
    args,  # type: Sequence[str]
    **kwargs  # type: Any
)

Source from the content-addressed store, hash-verified

62
63
64def 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
72class Popen(subprocess.Popen):

Callers

nothing calls this directly

Calls 2

castFunction · 0.90
_safe_argsFunction · 0.85

Tested by

no test coverage detected