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 vstinner
Recipients LambertDW, bgh, georg.brandl, giampaolo.rodola, sameerd, skip.montanaro, vstinner, wplappert
Date 2008-11-24.00:59:15
SpamBayes Score 6.710635e-06
Marked as misclassified No
Message-id <1227488357.87.0.501494241414.issue4194@psf.upfronthosting.co.za>
In-reply-to
Content
About Python3, os.popen() is more than two times faster (0.20 sec vs 
0.50 sec) than subprocess.Popen()! It's amazing because popen() opens 
the standard output as unicode file whereas Popen() creates a binary 
file! Another funny thing: os.popen() calls subprocess.Popen() :-) The 
difference is just this instruction:
   stdout = io.TextIOWrapper(stdout)
History
Date User Action Args
2008-11-24 00:59:19vstinnersetrecipients: + vstinner, skip.montanaro, georg.brandl, giampaolo.rodola, LambertDW, wplappert, sameerd, bgh
2008-11-24 00:59:17vstinnersetmessageid: <1227488357.87.0.501494241414.issue4194@psf.upfronthosting.co.za>
2008-11-24 00:59:16vstinnerlinkissue4194 messages
2008-11-24 00:59:15vstinnercreate