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 loewis
Recipients loewis, mhammond
Date 2008-05-03.07:29:24
SpamBayes Score 0.23269558
Marked as misclassified No
Message-id <1209799765.2.0.872771484661.issue2745@psf.upfronthosting.co.za>
In-reply-to
Content
I think this can be just as well done with (untested, as I don't have
access to a Windows system right now)

def iswow64():
    if platform.getarchitecture()[0] == '64-bit':return False
    return os.environ["PROCESSOR_ARCHITECTURE"] != "x86"

IOW, it's wow64 iff it's a 32-bit Python not running on an x86 machine.
History
Date User Action Args
2008-05-03 07:29:25loewissetspambayes_score: 0.232696 -> 0.23269558
recipients: + loewis, mhammond
2008-05-03 07:29:25loewissetspambayes_score: 0.232696 -> 0.232696
messageid: <1209799765.2.0.872771484661.issue2745@psf.upfronthosting.co.za>
2008-05-03 07:29:24loewislinkissue2745 messages
2008-05-03 07:29:24loewiscreate