Searched refs:spawnle (Results 1 – 5 of 5) sorted by relevance
/external/python/cpython2/Lib/ |
D | os.py | 612 def spawnle(mode, file, *args): function
|
/external/python/cpython3/Lib/ |
D | os.py | 933 def spawnle(mode, file, *args): function
|
/external/python/cpython2/Doc/library/ |
D | os.rst | 2023 spawnle(mode, path, ..., env) 2059 :func:`spawnle`, :func:`spawnv`, and :func:`spawnve`, will not use the 2063 For :func:`spawnle`, :func:`spawnlpe`, :func:`spawnve`, and :func:`spawnvpe` 2082 and :func:`spawnvpe` are not available on Windows. :func:`spawnle` and
|
/external/python/cpython3/Lib/test/ |
D | test_os.py | 2469 exitcode = os.spawnle(os.P_WAIT, args[0], *args, self.env) 2537 self.assertRaises(ValueError, os.spawnle, os.P_NOWAIT, args[0], {}) 2538 self.assertRaises(ValueError, os.spawnle, os.P_NOWAIT, args[0], '', {})
|
/external/python/cpython3/Doc/library/ |
D | os.rst | 3422 spawnle(mode, path, ..., env) 3458 :func:`spawnle`, :func:`spawnv`, and :func:`spawnve`, will not use the 3462 For :func:`spawnle`, :func:`spawnlpe`, :func:`spawnve`, and :func:`spawnvpe` 3481 and :func:`spawnvpe` are not available on Windows. :func:`spawnle` and
|