summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/bcppcompiler.py
diff options
context:
space:
mode:
authorTarek Ziadé <ziade.tarek@gmail.com>2009-12-21 01:22:46 (GMT)
committerTarek Ziadé <ziade.tarek@gmail.com>2009-12-21 01:22:46 (GMT)
commit2b66da7d15e47f9ca0d08d4f18fc63c3ee6a0d51 (patch)
tree5f601e8659a1511fc64880c935d1033318b9cccf /Lib/distutils/bcppcompiler.py
parent2421d56e0205b58b925d1b6534f8ee3505ed549b (diff)
downloadcpython-2b66da7d15e47f9ca0d08d4f18fc63c3ee6a0d51.zip
cpython-2b66da7d15e47f9ca0d08d4f18fc63c3ee6a0d51.tar.gz
cpython-2b66da7d15e47f9ca0d08d4f18fc63c3ee6a0d51.tar.bz2
massive import cleaning in Distutils
Diffstat (limited to 'Lib/distutils/bcppcompiler.py')
-rw-r--r--Lib/distutils/bcppcompiler.py10
1 files changed, 4 insertions, 6 deletions
diff --git a/Lib/distutils/bcppcompiler.py b/Lib/distutils/bcppcompiler.py
index 5a0fa72..f26e7ae 100644
--- a/Lib/distutils/bcppcompiler.py
+++ b/Lib/distutils/bcppcompiler.py
@@ -13,13 +13,11 @@ for the Borland C++ compiler.
__revision__ = "$Id$"
-
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.errors import (DistutilsExecError, CompileError, LibError,
+ LinkError, UnknownFileError)
+from distutils.ccompiler import CCompiler, gen_preprocess_options
from distutils.file_util import write_file
from distutils.dep_util import newer
from distutils import log