diff options
author | Steve Dower <steve.dower@microsoft.com> | 2016-11-20 04:11:56 (GMT) |
---|---|---|
committer | Steve Dower <steve.dower@microsoft.com> | 2016-11-20 04:11:56 (GMT) |
commit | eccaa0679dfd8f23473b3370b74be4af1b5fec44 (patch) | |
tree | 16873747eb90a7995f09cb4cbb8e0bfdfe73f73b /Lib/os.py | |
parent | bce26262d1b4873e2f9a3da69f638ba56d36ce89 (diff) | |
download | cpython-eccaa0679dfd8f23473b3370b74be4af1b5fec44.zip cpython-eccaa0679dfd8f23473b3370b74be4af1b5fec44.tar.gz cpython-eccaa0679dfd8f23473b3370b74be4af1b5fec44.tar.bz2 |
Issue #28732: Adds new errors to spawnv emulation for platforms that only have fork and execv
Diffstat (limited to 'Lib/os.py')
-rw-r--r-- | Lib/os.py | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -832,6 +832,10 @@ if _exists("fork") and not _exists("spawnv") and _exists("execv"): def _spawnvef(mode, file, args, env, func): # 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() if not pid: # Child |