Searched refs:spawnv (Results 1 – 7 of 7) sorted by relevance
/third_party/python/Lib/ |
D | os.py | 872 def spawnv(mode, file, args): function 928 return spawnv(mode, file, args)
|
/third_party/python/Lib/test/ |
D | test_os.py | 2945 pid = os.spawnv(os.P_NOWAIT, sys.executable, args) 3056 exitcode = os.spawnv(os.P_WAIT, args[0], args) 3060 exitcode = os.spawnv(os.P_WAIT, FakePath(args[0]), args) 3084 pid = os.spawnv(os.P_NOWAIT, args[0], args) 3109 self.assertRaises(ValueError, os.spawnv, os.P_NOWAIT, args[0], ()) 3110 self.assertRaises(ValueError, os.spawnv, os.P_NOWAIT, args[0], []) 3111 self.assertRaises(ValueError, os.spawnv, os.P_NOWAIT, args[0], ('',)) 3112 self.assertRaises(ValueError, os.spawnv, os.P_NOWAIT, args[0], [''])
|
/third_party/python/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
|
/third_party/python/Doc/library/ |
D | os.rst | 4057 spawnv(mode, path, args) 4093 :func:`spawnle`, :func:`spawnv`, and :func:`spawnve`, will not use the 4101 :func:`spawnl`, :func:`spawnlp`, :func:`spawnv`, and :func:`spawnvp` all cause
|
/third_party/python/Lib/idlelib/ |
D | ChangeLog | 515 module defines 'spawnv' now, so we check for 'fork' first.
|
/third_party/python/Misc/ |
D | HISTORY | 28043 - On Windows, support spawnv() and associated P_* symbols.
|