summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_sysconfig.py
Commit message (Collapse)AuthorAgeFilesLines
* Issue #13590: OS X Xcode 4 - improve support for universal extension modulesNed Deily2013-01-311-0/+9
| | | | | | | | | | | | | | | | 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.
* Fix test_sysconfig when prefix != exec-prefix (#9100).Éric Araujo2011-10-081-5/+8
| | | | Reported by Zsolt Cserna.
* Fix test_sysconfig when run from a Python installed under /site (#10086).Éric Araujo2011-08-311-2/+2
| | | | Patch by Hallvard B Furuseth.
* Issue #9516: avoid errors in sysconfig when MACOSX_DEPLOYMENT_TARGET is set ↵Ronald Oussoren2011-05-151-3/+47
| | | | | | | | | in shell. Without this patch python will fail to start properly when the environment variable MACOSX_DEPLOYMENT_TARGET is set on MacOSX and has a value that is not compatible with the value during Python's build. This is caused by code in sysconfig that was only meant to be used in disutils.
* Merged revisions 86596 via svnmerge fromEzio Melotti2010-11-211-18/+18
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86596 | ezio.melotti | 2010-11-20 21:04:17 +0200 (Sat, 20 Nov 2010) | 1 line #9424: Replace deprecated assert* methods in the Python test suite. ........
* #8759: Fixed user paths in sysconfig for posix and os2 schemesTarek Ziadé2010-05-191-1/+10
|
* add underscoreBenjamin Peterson2010-05-081-1/+1
|
* r80967 introduced a new schemeBenjamin Peterson2010-05-081-2/+2
|
* It is not optimal to test sys.stderr on a debug build.Florent Xicluna2010-03-111-2/+1
|
* Issue #7880: Fix sysconfig when the python executable is a symbolic link.Florent Xicluna2010-03-101-1/+19
|
* Remove unused imports in test modules.Georg Brandl2010-02-071-2/+1
|
* Add missing import.Georg Brandl2010-02-061-0/+1
|
* sysconfig.get_scheme_names now returns a sorted tupleTarek Ziadé2010-02-021-1/+7
|
* use assert[Not]IsInstance where appropriateEzio Melotti2010-01-241-1/+1
|
* fixed the 64bits tests for get_platform() - mac osxTarek Ziadé2010-01-231-1/+27
|
* taking sysconfig out of distutilsTarek Ziadé2010-01-231-0/+214