Message173141
| 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. |
|