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 midnightdf
Recipients midnightdf
Date 2010-03-10.15:57:11
SpamBayes Score 0.032250468
Marked as misclassified No
Message-id <1268236633.45.0.419738445411.issue8110@psf.upfronthosting.co.za>
In-reply-to
Content
subprocess.py contains the following line (380 in CPython 2.6.3):
    mswindows = (sys.platform == "win32")

which only correctly detects CPython on Windows.  This line should be changed to:
    mswindows = (sys.platform == "win32" or sys.platform == "cli" or sys.platform == "silverlight")

so subprocess can be utilized from IronPython as well.

This bug should be trivial to fix.
History
Date User Action Args
2010-03-10 15:57:13midnightdfsetrecipients: + midnightdf
2010-03-10 15:57:13midnightdfsetmessageid: <1268236633.45.0.419738445411.issue8110@psf.upfronthosting.co.za>
2010-03-10 15:57:11midnightdflinkissue8110 messages
2010-03-10 15:57:11midnightdfcreate