This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Support spawnvp[e] + use native execvp[e] on win32
Type: enhancement Stage: test needed
Components: Windows Versions: Python 3.2
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: Nosy List: brian.curtin, snaury, tim.golden
Priority: normal Keywords: patch

Created on 2006-10-12 18:57 by snaury, last changed 2022-04-11 14:56 by admin.

Files
File name Uploaded Description Edit
python-win32-spawn_p_.patch snaury, 2006-10-12 18:57 review
Messages (2)
msg51231 - (view) Author: Alexey Borzenkov (snaury) Date: 2006-10-12 18:57
This patch adds support for os.spawnvp and os.spawnvpe
by using implementation previously used on OS/2 only
(not it is also used if HAVE_SPAWNVP is defined). Also
it adds native os.execvp and os.execvpe (if HAVE_EXECVP
is defined) and changes Lib/os.py so that it won't
overwrite these functions if they exist.
msg116180 - (view) Author: Mark Lawrence (BreamoreBoy) * Date: 2010-09-12 12:33
Brian/Tim any comments on this, the patch contains C code that I'm not qualified to comment on.
History
Date User Action Args
2022-04-11 14:56:20adminsetgithub: 44118
2014-02-03 19:45:31BreamoreBoysetnosy: - BreamoreBoy
2010-09-12 12:33:21BreamoreBoysetnosy: + tim.golden, brian.curtin, BreamoreBoy
messages: + msg116180
2010-07-10 09:47:09BreamoreBoysetversions: + Python 3.2, - Python 2.7
2009-03-30 07:20:55ajaksu2setstage: test needed
type: enhancement
versions: + Python 2.7, - Python 2.6
2006-10-12 18:57:08snaurycreate