Searched refs:spawnvpe (Results 1 – 7 of 7) sorted by relevance
/external/python/cpython2/Lib/ |
D | os.py | 589 def spawnvpe(mode, file, args, env): function 649 return spawnvpe(mode, file, args[:-1], env)
|
/external/python/cpython3/Lib/ |
D | os.py | 903 def spawnvpe(mode, file, args, env): function 967 return spawnvpe(mode, file, args[:-1], env)
|
/external/python/cpython2/Doc/library/ |
D | os.rst | 2029 spawnvpe(mode, file, args, env) 2054 :func:`spawnlpe`, :func:`spawnvp`, and :func:`spawnvpe`) will use the 2063 For :func:`spawnle`, :func:`spawnlpe`, :func:`spawnve`, and :func:`spawnvpe` 2072 As an example, the following calls to :func:`spawnlp` and :func:`spawnvpe` are 2079 os.spawnvpe(os.P_WAIT, 'cp', L, os.environ) 2082 and :func:`spawnvpe` are not available on Windows. :func:`spawnle` and
|
/external/python/cpython2/Lib/test/ |
D | test_os.py | 1006 self._test_invalid_env(os.spawnvpe)
|
/external/python/cpython3/Doc/library/ |
D | os.rst | 3830 spawnvpe(mode, file, args, env) 3858 :func:`spawnlpe`, :func:`spawnvp`, and :func:`spawnvpe`) will use the 3867 For :func:`spawnle`, :func:`spawnlpe`, :func:`spawnve`, and :func:`spawnvpe` 3876 As an example, the following calls to :func:`spawnlp` and :func:`spawnvpe` are 3883 os.spawnvpe(os.P_WAIT, 'cp', L, os.environ) 3888 and :func:`spawnvpe` are not available on Windows. :func:`spawnle` and
|
/external/python/cpython3/Lib/test/ |
D | test_os.py | 2933 exitcode = os.spawnvpe(os.P_WAIT, args[0], args, self.env) 3029 self._test_invalid_env(os.spawnvpe)
|
/external/python/cpython2/Modules/ |
D | posixmodule.c | 3823 spawnval = spawnvpe(mode, path, argvlist, envlist); in posix_spawnvpe()
|