summaryrefslogtreecommitdiff
path: root/Lib/distutils/bcppcompiler.py
diff options
context:
space:
mode:
authorTarek Ziadé <ziade.tarek@gmail.com>2009-12-21 01:22:46 +0000
committerTarek Ziadé <ziade.tarek@gmail.com>2009-12-21 01:22:46 +0000
commit2b66da7d15e47f9ca0d08d4f18fc63c3ee6a0d51 (patch)
tree5f601e8659a1511fc64880c935d1033318b9cccf /Lib/distutils/bcppcompiler.py
parent2421d56e0205b58b925d1b6534f8ee3505ed549b (diff)
downloadcpython-git-2b66da7d15e47f9ca0d08d4f18fc63c3ee6a0d51.tar.gz
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 5a0fa727cd..f26e7ae467 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