mirror of
https://github.com/python/cpython.git
synced 2025-11-01 18:51:43 +00:00
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 ........
This commit is contained in:
parent
edacea30e4
commit
8b441d0dcd
12 changed files with 80 additions and 135 deletions
|
|
@ -7,15 +7,14 @@ __revision__ = "$Id$"
|
|||
import sys
|
||||
import os
|
||||
|
||||
from sysconfig import (get_config_vars, get_platform, get_paths, get_path,
|
||||
get_config_var)
|
||||
from sysconfig import get_config_vars, get_paths, get_path, get_config_var
|
||||
|
||||
from distutils import log
|
||||
from distutils.core import Command
|
||||
from distutils.debug import DEBUG
|
||||
from distutils.errors import DistutilsPlatformError
|
||||
from distutils.file_util import write_file
|
||||
from distutils.util import convert_path, change_root
|
||||
from distutils.util import convert_path, change_root, get_platform
|
||||
from distutils.errors import DistutilsOptionError
|
||||
|
||||
def _subst_vars(s, local_vars):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue