diff options
author | Andrew MacIntyre <andymac@bullseye.apana.org.au> | 2008-02-03 07:20:39 +0000 |
---|---|---|
committer | Andrew MacIntyre <andymac@bullseye.apana.org.au> | 2008-02-03 07:20:39 +0000 |
commit | 8af7067a19c2d9448cf8cc91bae2e1372a6d32b1 (patch) | |
tree | d8e15fec56f4739d79f6d3054fcca1c22e60f2ce | |
parent | ab8fe4e01f8aec54106cccb6fbaf8f347d79a05c (diff) | |
download | cpython-git-8af7067a19c2d9448cf8cc91bae2e1372a6d32b1.tar.gz |
Backport 60542:
The wrapper function is supposed to be for spawnvpe() so that's
what we should call [this wrapper only available on OS/2].
-rw-r--r-- | Modules/posixmodule.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index aaaa838c27..77958275f3 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -3412,9 +3412,9 @@ posix_spawnvpe(PyObject *self, PyObject *args) Py_BEGIN_ALLOW_THREADS #if defined(PYCC_GCC) - spawnval = spawnve(mode, path, argvlist, envlist); + spawnval = spawnvpe(mode, path, argvlist, envlist); #else - spawnval = _spawnve(mode, path, argvlist, envlist); + spawnval = _spawnvpe(mode, path, argvlist, envlist); #endif Py_END_ALLOW_THREADS |