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 steve.dower
Recipients Liran Ringel, paul.moore, steve.dower, tim.golden, zach.ware
Date 2017-01-02.04:20:49
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1483330850.47.0.39531534339.issue29124@psf.upfronthosting.co.za>
In-reply-to
Content
Is platform.architecture() the right way to determine what platform you're targeting? This will tell you the current OS, but typically you want to know the architecture of the Python process (since you often run 32-bit processes on 64-bit Windows). If you just want the Python process, checking "sys.winver.endswith('-32')" is the easiest way in 3.5 and later to see whether it's 32-bit Python.

Otherwise those changes look okay to me.
History
Date User Action Args
2017-01-02 04:20:50steve.dowersetrecipients: + steve.dower, paul.moore, tim.golden, zach.ware, Liran Ringel
2017-01-02 04:20:50steve.dowersetmessageid: <1483330850.47.0.39531534339.issue29124@psf.upfronthosting.co.za>
2017-01-02 04:20:50steve.dowerlinkissue29124 messages
2017-01-02 04:20:49steve.dowercreate