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 ned.deily
Recipients doko, ned.deily, steve.dower, tim.golden, zach.ware
Date 2015-05-14.23:19:57
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1431645597.4.0.283916071648.issue24198@psf.upfronthosting.co.za>
In-reply-to
Content
@doko, are you referring to the results of {sysconfig,distutils.util}.get_platform()? What effect would this have on third-party packages that currently support multiple versions of Python?

Also, if get_platform() is meant, I don't understand the comment "Darwin uses this too, but chooses to only encode the <os>".  On OS X for get_platform(), we provide a string of the form:

"macosx"-<ABI>-<UNIVERSAL_CPU_ARCHS>

where ABI is derived from the minimum OS X level deployment target

and UNIVERSAL_CPU_ARCHS is a name that identifies the set of CPU architectures included in the fat binaries for this build. 

Common examples:
   macosx-10.5-fat -> runs on 10.5 or later systems with Intel-32 or PPC-32 support

   macosx-10.6-intel -> runs on 10.6 or later systems with Intel-32 (i386) or Intel-64 (x86_64) support

   macosx-10.10-x86_64 -> runs on 10.10 or later with only Intel-64 support
History
Date User Action Args
2015-05-14 23:19:57ned.deilysetrecipients: + ned.deily, doko, tim.golden, zach.ware, steve.dower
2015-05-14 23:19:57ned.deilysetmessageid: <1431645597.4.0.283916071648.issue24198@psf.upfronthosting.co.za>
2015-05-14 23:19:57ned.deilylinkissue24198 messages
2015-05-14 23:19:57ned.deilycreate