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

Function call

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

Source from the content-addressed store, hash-verified

46
47
48def call(
49 args, # type: Sequence[str]
50 **kwargs # type: Any
51):
52 # type: (...) -> int
53 return subprocess.call(args=_safe_args(args), **kwargs)
54
55
56def check_call(

Callers

nothing calls this directly

Calls 1

_safe_argsFunction · 0.85

Tested by

no test coverage detected