Searched refs:spawnle (Results 1 - 3 of 3) sorted by relevance

/external/python/cpython2/Lib/
H A Dos.py612 def spawnle(mode, file, *args): function
613 """spawnle(mode, file, *args, env) -> integer
624 __all__.extend(["spawnv", "spawnve", "spawnl", "spawnle",])
/external/python/cpython3/Lib/
H A Dos.py922 def spawnle(mode, file, *args): function
923 """spawnle(mode, file, *args, env) -> integer
934 __all__.extend(["spawnl", "spawnle"])
/external/python/cpython3/Lib/test/
H A Dtest_os.py2270 @requires_os_func('spawnle')
2273 exitcode = os.spawnle(os.P_WAIT, args[0], *args, self.env)
2338 @requires_os_func('spawnle')
2341 self.assertRaises(ValueError, os.spawnle, os.P_NOWAIT, args[0], {})
2342 self.assertRaises(ValueError, os.spawnle, os.P_NOWAIT, args[0], '', {})

Completed in 797 milliseconds