Home
last modified time | relevance | path

Searched refs:spawnv (Results 1 – 7 of 7) sorted by relevance

/third_party/python/Lib/
Dos.py872 def spawnv(mode, file, args): function
928 return spawnv(mode, file, args)
/third_party/python/Lib/test/
Dtest_os.py2945 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/
D3.6.0b1.rst431 Fix crash in os.spawnv() with no elements in args
D3.5.3rc1.rst557 Fix crash in os.spawnv() with no elements in args
/third_party/python/Doc/library/
Dos.rst4057 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/
DChangeLog515 module defines 'spawnv' now, so we check for 'fork' first.
/third_party/python/Misc/
DHISTORY28043 - On Windows, support spawnv() and associated P_* symbols.