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)
| 926 | return _spawnvef(mode, file, args, None, execv) |
| 927 | |
| 928 | def spawnve(mode, file, args, env): |
| 929 | """spawnve(mode, file, args, env) -> integer |
| 930 | |
| 931 | Execute file with arguments from args in a subprocess with the |
| 932 | specified environment. |
| 933 | If mode == P_NOWAIT return the pid of the process. |
| 934 | If mode == P_WAIT return the process's exit code if it exits normally; |
| 935 | otherwise return -SIG, where SIG is the signal that killed it. """ |
| 936 | return _spawnvef(mode, file, args, env, execve) |
| 937 | |
| 938 | # Note: spawnvp[e] isn't currently supported on Windows |
| 939 |