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 jafo
Recipients ggenellina, jafo, pmezard, pythonmeister
Date 2008-03-17.17:34:04
SpamBayes Score 0.2777925
Marked as misclassified No
Message-id <1205775245.73.0.444910185005.issue1366@psf.upfronthosting.co.za>
In-reply-to
Content
We've discussed this at the PyCon sprints, and here's the concensus:

os.popen inherits the parents stderr, and on Windows there is not an
existing valid stderr by default.  So the parent should, to be
compatible with the Windows environment, create stderr or use popen2.

However, popen is deprecated.  The best solution would be to use
subprocess module which is defined to do the right thing in this case. 
popen is not.

Because popen is deprecated, we are going to leave this behavior and
documentation as it is.
History
Date User Action Args
2008-03-17 17:34:06jafosetspambayes_score: 0.277793 -> 0.2777925
recipients: + jafo, ggenellina, pmezard, pythonmeister
2008-03-17 17:34:05jafosetspambayes_score: 0.277793 -> 0.277793
messageid: <1205775245.73.0.444910185005.issue1366@psf.upfronthosting.co.za>
2008-03-17 17:34:05jafolinkissue1366 messages
2008-03-17 17:34:04jafocreate