Searched refs:spawnl (Results 1 – 5 of 5) sorted by relevance
/third_party/python/Lib/ |
D | os.py | 921 def spawnl(mode, file, *args): function
|
/third_party/python/Doc/library/ |
D | os.rst | 1599 and stderr), which are always inherited. Using :func:`spawn\* <spawnl>` functions, 4053 .. function:: spawnl(mode, path, ...) 4078 The "l" and "v" variants of the :func:`spawn\* <spawnl>` functions differ in how 4082 :func:`spawnl\*` functions. The "v" variants are good when the number of 4090 environment is being replaced (using one of the :func:`spawn\*e <spawnl>` variants, 4092 the :envvar:`PATH` variable. The other variants, :func:`spawnl`, 4101 :func:`spawnl`, :func:`spawnlp`, :func:`spawnv`, and :func:`spawnvp` all cause 4115 .. audit-event:: os.spawn mode,path,args,env os.spawnl 4129 Possible values for the *mode* parameter to the :func:`spawn\* <spawnl>` family of 4139 Possible value for the *mode* parameter to the :func:`spawn\* <spawnl>` family of [all …]
|
D | subprocess.rst | 1325 Replacing the :func:`os.spawn <os.spawnl>` family
|
/third_party/python/Lib/test/ |
D | test_os.py | 3032 exitcode = os.spawnl(os.P_WAIT, args[0], *args) 3097 self.assertRaises(ValueError, os.spawnl, os.P_NOWAIT, args[0]) 3098 self.assertRaises(ValueError, os.spawnl, os.P_NOWAIT, args[0], '')
|
D | test_tempfile.py | 501 retval = os.spawnl(os.P_WAIT, sys.executable, decorated, tester, v, fd)
|