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

Function spawnve

Lib/os.py:947–955  ·  view source on GitHub ↗

spawnve(mode, file, args, env) -> integer Execute file with arguments from args in a subprocess with the specified environment. If mode == P_NOWAIT return the pid of the process. If mode == P_WAIT return the process's exit code if it exits normally; otherwise return -SIG, where SIG is the signal th

(mode, file, args, env)

Source from the content-addressed store, hash-verified

945 return _spawnvef(mode, file, args, None, execv)
946
947 def spawnve(mode, file, args, env):
948 """spawnve(mode, file, args, env) -> integer
949
950Execute file with arguments from args in a subprocess with the
951specified environment.
952If mode == P_NOWAIT return the pid of the process.
953If mode == P_WAIT return the process's exit code if it exits normally;
954otherwise return -SIG, where SIG is the signal that killed it. """
955 return _spawnvef(mode, file, args, env, execve)
956
957 # Note: spawnvp[e] isn't currently supported on Windows
958

Callers 1

spawnleFunction · 0.85

Calls 1

_spawnvefFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…