Searched refs:spawnv (Results 1 – 18 of 18) sorted by relevance
/external/python/cpython2/Lib/distutils/ |
D | spawn.py | 73 rc = os.spawnv(os.P_WAIT, executable, cmd) 96 rc = os.spawnv(os.P_WAIT, executable, cmd)
|
/external/autotest/client/tests/bash_shared_mapping/ |
D | bash_shared_mapping.py | 36 pid[i] = os.spawnv(os.P_NOWAIT, usemem, args)
|
/external/python/cpython3/Lib/distutils/ |
D | spawn.py | 69 rc = os.spawnv(os.P_WAIT, executable, cmd)
|
/external/python/cpython2/Lib/ |
D | os.py | 558 def spawnv(mode, file, args): function 610 return spawnv(mode, file, args)
|
/external/python/cpython3/Lib/ |
D | os.py | 875 def spawnv(mode, file, args): function 931 return spawnv(mode, file, args)
|
/external/python/cpython2/Doc/library/ |
D | popen2.rst | 29 directly to the program without shell intervention (as with :func:`os.spawnv`).
|
D | os.rst | 529 (as with :func:`os.spawnv`). If *cmd* is a string it will be passed to the shell 2026 spawnv(mode, path, args) 2059 :func:`spawnle`, :func:`spawnv`, and :func:`spawnve`, will not use the 2067 :func:`spawnl`, :func:`spawnlp`, :func:`spawnv`, and :func:`spawnvp` all cause
|
/external/python/cpython3/Lib/test/ |
D | test_os.py | 2426 pid = os.spawnv(os.P_NOWAIT, FakePath(args[0]), args) 2487 exitcode = os.spawnv(os.P_WAIT, args[0], args) 2511 pid = os.spawnv(os.P_NOWAIT, args[0], args) 2543 self.assertRaises(ValueError, os.spawnv, os.P_NOWAIT, args[0], ()) 2544 self.assertRaises(ValueError, os.spawnv, os.P_NOWAIT, args[0], []) 2545 self.assertRaises(ValueError, os.spawnv, os.P_NOWAIT, args[0], ('',)) 2546 self.assertRaises(ValueError, os.spawnv, os.P_NOWAIT, args[0], [''])
|
/external/python/cpython2/PC/os2emx/ |
D | README.os2emx | 533 17. os.spawnv() and os.spawnve() expose EMX's library routines rather 573 of trying. os.spawnv() _does_ work. PythonPM passes all regression tests
|
/external/python/cpython2/Lib/idlelib/ |
D | PyShell.py | 408 self.rpcpid = os.spawnv(os.P_NOWAIT, sys.executable, args)
|
D | ChangeLog | 515 module defines 'spawnv' now, so we check for 'fork' first.
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.6.0b1.rst | 431 Fix crash in os.spawnv() with no elements in args
|
D | 3.5.3rc1.rst | 557 Fix crash in os.spawnv() with no elements in args
|
/external/python/cpython3/Doc/library/ |
D | os.rst | 3425 spawnv(mode, path, args) 3458 :func:`spawnle`, :func:`spawnv`, and :func:`spawnve`, will not use the 3466 :func:`spawnl`, :func:`spawnlp`, :func:`spawnv`, and :func:`spawnvp` all cause
|
/external/python/cpython3/Lib/idlelib/ |
D | ChangeLog | 515 module defines 'spawnv' now, so we check for 'fork' first.
|
/external/python/cpython2/Modules/ |
D | posixmodule.c | 3433 spawnval = spawnv(mode, path, argvlist); in posix_spawnv()
|
/external/python/cpython2/Misc/ |
D | HISTORY | 10664 - On Windows, support spawnv() and associated P_* symbols.
|
/external/python/cpython3/Misc/ |
D | HISTORY | 28043 - On Windows, support spawnv() and associated P_* symbols.
|