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 ned.deily
Recipients Andy.Lutomirski, ned.deily
Date 2012-08-02.05:04:26
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1343883868.9.0.580936911791.issue15532@psf.upfronthosting.co.za>
In-reply-to
Content
Notice in the reply to Issue3907, "with 2.6, you have to use io.open() explicitly".  This is still true in Python 2.7, i.e. the new 3.x-compatible io library is not used by default in Python 2.  If you want to use it with subprocess.Popen, one way is to supply a pipe with an io wrapper, perhaps something like:

import io, os
i, o = os.pipe()
piperead = io.open(i,'rb',buffering=0)
p = subprocess.Popen(..., stdout=o)

See Chapter 15 of the Python 2.7 Standard Library doc for more information on the io module: http://docs.python.org/library/io.html
History
Date User Action Args
2012-08-02 05:04:29ned.deilysetrecipients: + ned.deily, Andy.Lutomirski
2012-08-02 05:04:28ned.deilysetmessageid: <1343883868.9.0.580936911791.issue15532@psf.upfronthosting.co.za>
2012-08-02 05:04:28ned.deilylinkissue15532 messages
2012-08-02 05:04:27ned.deilycreate