diff options
author | Victor Stinner <vstinner@python.org> | 2020-04-30 09:28:09 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-30 09:28:09 (GMT) |
commit | e488e300f5c01289c10906c2e53a8e43d6de32d8 (patch) | |
tree | 5e877eebed4bfad1ac2536e6fc706914fe2316e2 /Lib/distutils/command/check.py | |
parent | 90549676e063c2c818cfc14213d3adb7edcc2bd5 (diff) | |
download | cpython-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.py | 1 |
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): |