summaryrefslogtreecommitdiff
path: root/bcppcompiler.py
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2020-04-30 11:28:09 +0200
committerGitHub <noreply@github.com>2020-04-30 11:28:09 +0200
commita672328f1e2515f5b103df12d19fa3c2ffba68fc (patch)
tree6e9714aa1736d9a268ae4075e3caca5f9dd9afde /bcppcompiler.py
parentea19518aa139d623a4fad7d01159674ee43b9f15 (diff)
downloadpython-setuptools-git-a672328f1e2515f5b103df12d19fa3c2ffba68fc.tar.gz
bpo-40443: Remove unused imports in distutils (GH-19802)
Diffstat (limited to 'bcppcompiler.py')
-rw-r--r--bcppcompiler.py4
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