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 josh.r, ncoghlan, tim.golden, vstinner
Date 2014-10-14.21:18:08
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1413321488.91.0.934649859059.issue22635@psf.upfronthosting.co.za>
In-reply-to
Content
Oh, I now understand why I feel guilty, I proposed a patch rewriting getstatusoutput() in the issue #10197. My patch ends with:

+    if os.name != 'nt':
+        # convert status to be interpreted according to the wait() rules
+        sts = sts << 8

This fix is that simple, but it means that depending on the Python version, you will get a different status...

Python 3.3 doesn't accept bugfixes anymore and so cannot be changed.
History
Date User Action Args
2014-10-14 21:18:08vstinnersetrecipients: + vstinner, ncoghlan, tim.golden, josh.r
2014-10-14 21:18:08vstinnersetmessageid: <1413321488.91.0.934649859059.issue22635@psf.upfronthosting.co.za>
2014-10-14 21:18:08vstinnerlinkissue22635 messages
2014-10-14 21:18:08vstinnercreate