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 Michael.Felt
Recipients Arfrever, Dima.Tisnek, Michael.Felt, djones, eric.araujo, jaraco, jkloth, ned.deily, pitrou, sferencik, tarek
Date 2016-03-04.13:38:53
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1457098733.74.0.480651291001.issue18987@psf.upfronthosting.co.za>
In-reply-to
Content
FYI: build as 64-bit (and shall only build as 64-bit from now I expect)
and the output works as:
==============================
aixtools.python:aixtools.python.man.en_US:2.7.11.0::I:C:::::N:man pages::::0::
aixtools.python:aixtools.python.rte:2.7.11.0::I:C:::::N:built 04-Mar-2016 1232 UTC::::0::
==============================
root@x064:[/data/prj/aixtools/python/python-2.7.11]./python
Python 2.7.11 (default, Mar  4 2016, 12:29:39) [C] on aix5
Type "help", "copyright", "credits" or "license" for more information.
>>> import sysconfig
>>> sysconfig.is_python_build()
True
>>> import distutils.util
>>> distutils.util.get_platform()
'aix-5.3'
>>> import os
>>> os.uname()
('AIX', 'x064', '3', '5', '00C291F54C00')
>>> import platform
>>> platform.architecture()
('64bit', '')
>>> import os, sys
>>> sys.maxsize
9223372036854775807
>>> 2**32
4294967296
>>> 

I was wondering if there is a PEP statement somewhere re: distutils.util.get_platform() semantics
History
Date User Action Args
2016-03-04 13:38:54Michael.Feltsetrecipients: + Michael.Felt, jaraco, pitrou, tarek, jkloth, ned.deily, eric.araujo, Arfrever, Dima.Tisnek, sferencik, djones
2016-03-04 13:38:53Michael.Feltsetmessageid: <1457098733.74.0.480651291001.issue18987@psf.upfronthosting.co.za>
2016-03-04 13:38:53Michael.Feltlinkissue18987 messages
2016-03-04 13:38:53Michael.Feltcreate