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 skrah
Recipients benhoyt, berwyn, davidfraser, skrah
Date 2010-07-21.17:23:48
SpamBayes Score 0.0016818972
Marked as misclassified No
Message-id <1279733030.49.0.0874523159364.issue6689@psf.upfronthosting.co.za>
In-reply-to
Content
This is a request for changing the current behavior on Unix, and I
doubt this is going to happen, since it could break existing code.

On a side note, there are already two ways get the desired output:


>>> Popen("gcc --version", shell=True)
gcc (GCC) 4.1.3 20080623 (prerelease) (Ubuntu 4.1.2-23ubuntu3) ...


>>> p = Popen(["gcc", "--version"], stdout=PIPE)
>>> p.stdout.read()
b'gcc (GCC) 4.1.3 20080623 (prerelease) ...
History
Date User Action Args
2010-07-21 17:23:50skrahsetrecipients: + skrah, davidfraser, benhoyt, berwyn
2010-07-21 17:23:50skrahsetmessageid: <1279733030.49.0.0874523159364.issue6689@psf.upfronthosting.co.za>
2010-07-21 17:23:48skrahlinkissue6689 messages
2010-07-21 17:23:48skrahcreate