MCPcopy Index your code
hub / github.com/python/cpython / _subprocess_call

Method _subprocess_call

Tools/ssl/multissltests.py:256–258  ·  view source on GitHub ↗
(self, cmd, env=None, **kwargs)

Source from the content-addressed store, hash-verified

254 return os.path.isfile(self.src_file)
255
256 def _subprocess_call(self, cmd, env=None, **kwargs):
257 log.debug("Call '{}'".format(" ".join(cmd)))
258 return subprocess.check_call(cmd, env=env, **kwargs)
259
260 def _subprocess_output(self, cmd, env=None, **kwargs):
261 log.debug("Call '{}'".format(" ".join(cmd)))

Callers 7

_build_srcMethod · 0.95
_make_installMethod · 0.95
recompile_pymodsMethod · 0.95
check_importsMethod · 0.95
run_python_testsMethod · 0.95
_post_install_3xxMethod · 0.80
_build_srcMethod · 0.80

Calls 3

debugMethod · 0.45
formatMethod · 0.45
joinMethod · 0.45

Tested by

no test coverage detected