Issue #13994: Earler partial revert of Distutils enhancements in 2.7

has left two versions of customize_compiler, the original in
distutils.sysconfig and another copy in distutils.ccompiler, with some
parts of distutils calling one and others using the other.
Complete the revert back to only having one in distutils.sysconfig as
is the case in 3.x.
This commit is contained in:
Ned Deily 2012-02-11 20:40:24 +01:00
parent 0f7e2df2f1
commit c47a459251
7 changed files with 24 additions and 59 deletions

View file

@ -19,7 +19,7 @@ __revision__ = "$Id$"
import os
from distutils.core import Command
from distutils.errors import DistutilsSetupError
from distutils.ccompiler import customize_compiler
from distutils.sysconfig import customize_compiler
from distutils import log
def show_compilers():