mirror of
https://github.com/AdaCore/cpython.git
synced 2026-02-12 12:57:15 -08:00
The wrapper function is supposed to be for spawnvpe() so that's
what we should call [this wrapper only available on OS/2]. Backport candidate to 2.5.
This commit is contained in:
@@ -3538,9 +3538,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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user