OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:spawnvp
(Results
1 - 2
of
2
) sorted by null
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
os.py
575
# Note:
spawnvp
[e] is't currently supported on Windows
577
def
spawnvp
(mode, file, args):
function
578
"""
spawnvp
(mode, file, args) -> integer
625
if _exists("
spawnvp
"):
626
# At the moment, Windows doesn't implement
spawnvp
[e],
636
return
spawnvp
(mode, file, args)
650
__all__.extend(["
spawnvp
", "spawnvpe", "spawnlp", "spawnlpe",])
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/
os.py
575
# Note:
spawnvp
[e] is't currently supported on Windows
577
def
spawnvp
(mode, file, args):
function
578
"""
spawnvp
(mode, file, args) -> integer
625
if _exists("
spawnvp
"):
626
# At the moment, Windows doesn't implement
spawnvp
[e],
636
return
spawnvp
(mode, file, args)
650
__all__.extend(["
spawnvp
", "spawnvpe", "spawnlp", "spawnlpe",])
Completed in 57 milliseconds