Message100788
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. | |
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 | | |