mirror of
https://github.com/python/cpython.git
synced 2025-09-26 10:19:53 +00:00
Issue #28732: Adds new errors to spawnv emulation for platforms that only have fork and execv
This commit is contained in:
commit
b8f4c7a779
1 changed files with 4 additions and 0 deletions
|
@ -832,6 +832,10 @@ if _exists("fork") and not _exists("spawnv") and _exists("execv"):
|
||||||
|
|
||||||
def _spawnvef(mode, file, args, env, func):
|
def _spawnvef(mode, file, args, env, func):
|
||||||
# Internal helper; func is the exec*() function to use
|
# Internal helper; func is the exec*() function to use
|
||||||
|
if not isinstance(args, (tuple, list)):
|
||||||
|
raise TypeError('argv must be a tuple or a list')
|
||||||
|
if not args[0]:
|
||||||
|
raise ValueError('argv first element cannot be empty')
|
||||||
pid = fork()
|
pid = fork()
|
||||||
if not pid:
|
if not pid:
|
||||||
# Child
|
# Child
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue