mirror of
https://github.com/python/cpython.git
synced 2025-07-23 11:15:24 +00:00
reverted distutils its 3.1 state. All new work is now happening in disutils2, and distutils is now feature-frozen.
This commit is contained in:
parent
5db0c94072
commit
3679727939
64 changed files with 1626 additions and 1678 deletions
|
@ -13,11 +13,13 @@ for the Borland C++ compiler.
|
|||
|
||||
__revision__ = "$Id$"
|
||||
|
||||
import os
|
||||
|
||||
from distutils.errors import (DistutilsExecError, CompileError, LibError,
|
||||
LinkError, UnknownFileError)
|
||||
from distutils.ccompiler import CCompiler, gen_preprocess_options
|
||||
import os
|
||||
from distutils.errors import \
|
||||
DistutilsExecError, DistutilsPlatformError, \
|
||||
CompileError, LibError, LinkError, UnknownFileError
|
||||
from distutils.ccompiler import \
|
||||
CCompiler, gen_preprocess_options, gen_lib_options
|
||||
from distutils.file_util import write_file
|
||||
from distutils.dep_util import newer
|
||||
from distutils import log
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue