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 brian.curtin, lemburg, loewis, tim.golden, vstinner
Date 2011-03-03.09:38:38
SpamBayes Score 6.174561e-12
Marked as misclassified No
Message-id <1299145120.1.0.40618110123.issue11377@psf.upfronthosting.co.za>
In-reply-to
Content
> Try to use platform from within IDLE ...

I tried subprocess.call('calc.exec'): it works.

I tried p=subprocess.Popen('echo hello', shell=True, stdout=subprocess.PIPE); p.communicate(): it works too (I get the output and there is no MS-DOS popup).

> Hmm, but if os.popen() is no longer supported in Python 3, how can
> we still use it in platform ?

platform.popen() and os.popen() have the same requirement: call process.wait() on file.close(). os.popen() does already implement that using _wrap_close. I don't want to copy/paste the code from os. os.popen() does still exist, why not reusing it?

Anyway, if we remove os.popen(), we should remove platform.popen() too. But I don't want/plan to remove os.popen().
History
Date User Action Args
2011-03-03 09:38:40vstinnersetrecipients: + vstinner, lemburg, loewis, tim.golden, brian.curtin
2011-03-03 09:38:40vstinnersetmessageid: <1299145120.1.0.40618110123.issue11377@psf.upfronthosting.co.za>
2011-03-03 09:38:38vstinnerlinkissue11377 messages
2011-03-03 09:38:38vstinnercreate