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.

Author apevec
Recipients Ringding, abaron, apevec
Date 2009-05-14.13:31:41
SpamBayes Score 0.0016205207
Marked as misclassified No
Message-id <1242307903.32.0.21533220173.issue5912@psf.upfronthosting.co.za>
In-reply-to
Content
Issue is not reproducible with python 2.5, following patch fixes it on
python 2.4:

--- os.py-2.4 2009-05-14 12:54:08.000000000 +0000
+++ os.py 2009-05-14 13:06:21.000000000 +0000
@@ -351,8 +351,8 @@

 __all__.extend(["execl","execle","execlp","execlpe","execvp","execvpe"])

+from errno import ENOENT, ENOTDIR
 def _execvpe(file, args, env=None):
-    from errno import ENOENT, ENOTDIR

     if env is not None:
         func = execve
History
Date User Action Args
2009-05-14 13:31:43apevecsetrecipients: + apevec, Ringding, abaron
2009-05-14 13:31:43apevecsetmessageid: <1242307903.32.0.21533220173.issue5912@psf.upfronthosting.co.za>
2009-05-14 13:31:42apeveclinkissue5912 messages
2009-05-14 13:31:41apeveccreate