Home
last modified time | relevance | path

Searched refs:spawnl (Results 1 – 5 of 5) sorted by relevance

/third_party/python/Lib/
Dos.py921 def spawnl(mode, file, *args): function
/third_party/python/Doc/library/
Dos.rst1599 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 …]
Dsubprocess.rst1325 Replacing the :func:`os.spawn <os.spawnl>` family
/third_party/python/Lib/test/
Dtest_os.py3032 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], '')
Dtest_tempfile.py501 retval = os.spawnl(os.P_WAIT, sys.executable, decorated, tester, v, fd)