summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/command/check.py
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2020-04-30 09:28:09 (GMT)
committerGitHub <noreply@github.com>2020-04-30 09:28:09 (GMT)
commite488e300f5c01289c10906c2e53a8e43d6de32d8 (patch)
tree5e877eebed4bfad1ac2536e6fc706914fe2316e2 /Lib/distutils/command/check.py
parent90549676e063c2c818cfc14213d3adb7edcc2bd5 (diff)
downloadcpython-e488e300f5c01289c10906c2e53a8e43d6de32d8.zip
cpython-e488e300f5c01289c10906c2e53a8e43d6de32d8.tar.gz
cpython-e488e300f5c01289c10906c2e53a8e43d6de32d8.tar.bz2
bpo-40443: Remove unused imports in distutils (GH-19802)
Diffstat (limited to 'Lib/distutils/command/check.py')
-rw-r--r--Lib/distutils/command/check.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/distutils/command/check.py b/Lib/distutils/command/check.py
index 7ceabd3..ada2500 100644
--- a/Lib/distutils/command/check.py
+++ b/Lib/distutils/command/check.py
@@ -11,7 +11,6 @@ try:
from docutils.parsers.rst import Parser
from docutils import frontend
from docutils import nodes
- from io import StringIO
class SilentReporter(Reporter):