diff options
author | Tarek Ziadé <ziade.tarek@gmail.com> | 2010-01-29 11:46:31 (GMT) |
---|---|---|
committer | Tarek Ziadé <ziade.tarek@gmail.com> | 2010-01-29 11:46:31 (GMT) |
commit | 8b441d0dcdb9380e999f0caead087c4365cb0bdd (patch) | |
tree | 6afac21467fdfacecb62658f96fc847aace4731b /Lib/distutils/command/build_ext.py | |
parent | edacea30e457e151611a9fe560120cedb3bdc527 (diff) | |
download | cpython-8b441d0dcdb9380e999f0caead087c4365cb0bdd.zip cpython-8b441d0dcdb9380e999f0caead087c4365cb0bdd.tar.gz cpython-8b441d0dcdb9380e999f0caead087c4365cb0bdd.tar.bz2 |
Merged revisions 77759,77761 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r77759 | tarek.ziade | 2010-01-26 22:21:54 +0100 (Tue, 26 Jan 2010) | 1 line
reintroduced the names in Distutils for APIs that were relocated
........
r77761 | tarek.ziade | 2010-01-26 23:46:15 +0100 (Tue, 26 Jan 2010) | 1 line
added local get_platform/set_platform APIs in distutils.sysconfig
........
Diffstat (limited to 'Lib/distutils/command/build_ext.py')
-rw-r--r-- | Lib/distutils/command/build_ext.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Lib/distutils/command/build_ext.py b/Lib/distutils/command/build_ext.py index 39d37da..8f41fac 100644 --- a/Lib/distutils/command/build_ext.py +++ b/Lib/distutils/command/build_ext.py @@ -9,14 +9,12 @@ __revision__ = "$Id$" import sys, os, re from warnings import warn -from sysconfig import get_platform - +from distutils.util import get_platform from distutils.core import Command from distutils.errors import * from distutils.ccompiler import customize_compiler from distutils.dep_util import newer_group from distutils.extension import Extension - from distutils import log # this keeps compatibility from 2.3 to 2.5 |