summaryrefslogtreecommitdiffstats
path: root/Lib/_osx_support.py
Commit message (Collapse)AuthorAgeFilesLines
* Issue #27171: Fix typos in documentation, code comments, and testsMartin Panter2016-06-021-6/+6
|
* Issue #27076: Doc, comment and test function name spelling fixesMartin Panter2016-05-261-1/+1
| | | | Most fixes to Doc/ and Lib/ directories by Ville Skyttä.
* Issue #21811: Anticipated fixes to 3.x and 2.7 for OS X 10.10 Yosemite.Ned Deily2014-06-251-2/+10
|
* Issue #21311: Avoid exception in _osx_support with non-standard compilerNed Deily2014-04-191-1/+1
| | | | configurations. Patch by John Szakmeister.
* Issue #19400: Prevent extension module build failures with Xcode 5 on OS XNed Deily2013-10-251-7/+13
| | | | | 10.8+ when using a universal Python that included a PPC architecture, such as with a python.org 32-bit-only binary installer.
* #18705: fix a number of typos. Patch by Févry Thibault.Ezio Melotti2013-08-171-4/+4
|
* Issue #18071: Extension module builds on OS X could fail with TypeErrorNed Deily2013-07-311-2/+2
| | | | if Xcode command line tools were not installed.
* Issue #13590: OS X Xcode 4 - improve support for universal extension modulesNed Deily2013-01-311-0/+488
In particular, fix extension module build failures when trying to use 32-bit-only installer Pythons on systems with Xcode 4 (currently OS X 10.8, 10.7, and optionally 10.6). * Backport 3.3.0 fixes to 2.7 branch (for release in 2.7.4) * Since Xcode 4 removes ppc support, extension module builds now check for ppc compiler support and by default remove ppc and ppc64 archs when they are not available. * Extension module builds now revert to using system installed headers and libs (/usr and /System/Library) if the SDK used to build the interpreter is not installed or has moved. * Try to avoid building extension modules with deprecated and problematic Apple llvm-gcc compiler. If original compiler is not available, use clang instead by default.