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 | 930 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 | 2893 exitcode = os.spawnle(os.P_WAIT, args[0], *args, self.env) 2958 self.assertRaises(ValueError, os.spawnle, os.P_NOWAIT, args[0], {}) 2959 self.assertRaises(ValueError, os.spawnle, os.P_NOWAIT, args[0], '', {})
|
/external/python/cpython3/Doc/library/ |
D | os.rst | 3824 spawnle(mode, path, ..., env) 3863 :func:`spawnle`, :func:`spawnv`, and :func:`spawnve`, will not use the 3867 For :func:`spawnle`, :func:`spawnlpe`, :func:`spawnve`, and :func:`spawnvpe` 3888 and :func:`spawnvpe` are not available on Windows. :func:`spawnle` and
|