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 eric.smith
Recipients Phillip.M.Feldman, Phillip.M.Feldman@gmail.com, amaury.forgeotdarc, eric.araujo, eric.smith
Date 2010-12-21.12:20:37
SpamBayes Score 3.7747583e-15
Marked as misclassified No
Message-id <1292934041.62.0.908851586638.issue10715@psf.upfronthosting.co.za>
In-reply-to
Content
This has already been fixed in 3.2:

Python 3.2b2 (py3k:87413, Dec 21 2010, 07:09:13) 
[GCC 4.1.2 20070626 (Red Hat 4.1.2-13)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import subprocess
>>> subprocess.Popen(['foo'])
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/root/python/py3k/Lib/subprocess.py", line 708, in __init__
    restore_signals, start_new_session)
  File "/root/python/py3k/Lib/subprocess.py", line 1323, in _execute_child
    raise child_exception_type(errno_num, err_msg)
OSError: [Errno 2] No such file or directory: 'foo'

It looks like it was changed by Benjamin in r86595. Not sure why that wasn't backported.
History
Date User Action Args
2010-12-21 12:20:41eric.smithsetrecipients: + eric.smith, amaury.forgeotdarc, eric.araujo, Phillip.M.Feldman@gmail.com, Phillip.M.Feldman
2010-12-21 12:20:41eric.smithsetmessageid: <1292934041.62.0.908851586638.issue10715@psf.upfronthosting.co.za>
2010-12-21 12:20:37eric.smithlinkissue10715 messages
2010-12-21 12:20:37eric.smithcreate