summaryrefslogtreecommitdiff
path: root/bcppcompiler.py
diff options
context:
space:
mode:
authorTarek Ziadé <ziade.tarek@gmail.com>2009-12-21 01:49:00 +0000
committerTarek Ziadé <ziade.tarek@gmail.com>2009-12-21 01:49:00 +0000
commit9414e0ddcaa3c08782325904d0d1d890dc8fa332 (patch)
treebdaa3333d6ea3c7bea7916d69f9dc5c06d61a96c /bcppcompiler.py
parent7553531b1974c77b2c51f9e22aaaa36eab115b39 (diff)
downloadpython-setuptools-git-9414e0ddcaa3c08782325904d0d1d890dc8fa332.tar.gz
Merged revisions 76956 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r76956 | tarek.ziade | 2009-12-21 02:22:46 +0100 (Mon, 21 Dec 2009) | 1 line massive import cleaning in Distutils ........
Diffstat (limited to 'bcppcompiler.py')
-rw-r--r--bcppcompiler.py10
1 files changed, 4 insertions, 6 deletions
diff --git a/bcppcompiler.py b/bcppcompiler.py
index c5e5cd25..77d94a59 100644
--- a/bcppcompiler.py
+++ b/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