diff options
| author | Victor Stinner <vstinner@python.org> | 2020-04-30 11:28:09 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-04-30 11:28:09 +0200 |
| commit | a672328f1e2515f5b103df12d19fa3c2ffba68fc (patch) | |
| tree | 6e9714aa1736d9a268ae4075e3caca5f9dd9afde /bcppcompiler.py | |
| parent | ea19518aa139d623a4fad7d01159674ee43b9f15 (diff) | |
| download | python-setuptools-git-a672328f1e2515f5b103df12d19fa3c2ffba68fc.tar.gz | |
bpo-40443: Remove unused imports in distutils (GH-19802)
Diffstat (limited to 'bcppcompiler.py')
| -rw-r--r-- | bcppcompiler.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bcppcompiler.py b/bcppcompiler.py index 9f4c432d..071fea5d 100644 --- a/bcppcompiler.py +++ b/bcppcompiler.py @@ -14,10 +14,10 @@ for the Borland C++ compiler. import os from distutils.errors import \ - DistutilsExecError, DistutilsPlatformError, \ + DistutilsExecError, \ CompileError, LibError, LinkError, UnknownFileError from distutils.ccompiler import \ - CCompiler, gen_preprocess_options, gen_lib_options + CCompiler, gen_preprocess_options from distutils.file_util import write_file from distutils.dep_util import newer from distutils import log |
