diff options
| author | Tarek Ziade <tarek@ziade.org> | 2010-11-11 17:51:58 +0100 |
|---|---|---|
| committer | Tarek Ziade <tarek@ziade.org> | 2010-11-11 17:51:58 +0100 |
| commit | 9b3dde4072db4356e4a08614e7b266f11a05554d (patch) | |
| tree | 81e93154eddae10e4fcf481a62152701f6aae7cd /distutils2/compiler/bcppcompiler.py | |
| parent | cb7b234fa42bb5f66c4c004c46fbf89ccee78791 (diff) | |
| download | disutils2-9b3dde4072db4356e4a08614e7b266f11a05554d.tar.gz | |
moved general functions out of ccompiler
Diffstat (limited to 'distutils2/compiler/bcppcompiler.py')
| -rw-r--r-- | distutils2/compiler/bcppcompiler.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/distutils2/compiler/bcppcompiler.py b/distutils2/compiler/bcppcompiler.py index 929994b..79f0815 100644 --- a/distutils2/compiler/bcppcompiler.py +++ b/distutils2/compiler/bcppcompiler.py @@ -10,17 +10,17 @@ for the Borland C++ compiler. # XXX looks like there's a LOT of overlap between these two classes: # someone should sit down and factor out the common code as # WindowsCCompiler! --GPW - - import os from distutils2.errors import (DistutilsExecError, CompileError, LibError, LinkError, UnknownFileError) -from distutils2.compiler.ccompiler import CCompiler, gen_preprocess_options +from distutils2.compiler.ccompiler import CCompiler +from distutils2.compiler import gen_preprocess_options from distutils2.file_util import write_file from distutils2.dep_util import newer from distutils2 import logger + class BCPPCompiler(CCompiler) : """Concrete class that implements an interface to the Borland C/C++ compiler, as defined by the CCompiler abstract class. |
