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 trent
Recipients Arfrever, doko, eric.araujo, georg.brandl, ned.deily, pitrou, python-dev, sbt, trent
Date 2012-10-17.08:08:33
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1350461313.98.0.0507945211334.issue15298@psf.upfronthosting.co.za>
In-reply-to
Content
Ah, this is because of this OS X-specific snippet in sysconfig.get_platform():

    elif osname[:6] == "darwin":
        import _osx_support
        osname, release, machine = _osx_support.get_platform_osx(
                                            get_config_vars(),
                                            osname, release, machine)

get_config_vars() results in _init_posix() eventually being called, which attempts to import _sysconfigdata.

Ugh.  Looking into a patch now.
History
Date User Action Args
2012-10-17 08:08:34trentsetrecipients: + trent, georg.brandl, doko, pitrou, ned.deily, eric.araujo, Arfrever, python-dev, sbt
2012-10-17 08:08:33trentsetmessageid: <1350461313.98.0.0507945211334.issue15298@psf.upfronthosting.co.za>
2012-10-17 08:08:33trentlinkissue15298 messages
2012-10-17 08:08:33trentcreate