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 eric.araujo
Recipients eric.araujo, jcea, tarek
Date 2012-01-17.16:26:09
SpamBayes Score 0.0008579875
Marked as misclassified No
Message-id <1326817569.76.0.701557294697.issue13803@psf.upfronthosting.co.za>
In-reply-to
Content
OK.

 from distutils.spawn import spawn
 from distutils import log
 from distutils.errors import DistutilsByteCompileError
+import platform

Please put that import higher up (with the other “import X”, before the “from X import Y”).
 
+            machine += ".%s" %platform.architecture()[0]

One space after the % operator please.

> I will commit it to 2.7, 3.1, 3.2 and 3.3 in a few days.

Not to 3.1, this is not a security issue.
History
Date User Action Args
2012-01-17 16:26:09eric.araujosetrecipients: + eric.araujo, jcea, tarek
2012-01-17 16:26:09eric.araujosetmessageid: <1326817569.76.0.701557294697.issue13803@psf.upfronthosting.co.za>
2012-01-17 16:26:09eric.araujolinkissue13803 messages
2012-01-17 16:26:09eric.araujocreate