Message100788
| 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:13 | midnightdf | set | recipients:
+ midnightdf |
| 2010-03-10 15:57:13 | midnightdf | set | messageid: <1268236633.45.0.419738445411.issue8110@psf.upfronthosting.co.za> |
| 2010-03-10 15:57:11 | midnightdf | link | issue8110 messages |
| 2010-03-10 15:57:11 | midnightdf | create | |
|