diff options
author | 2020-04-30 11:28:09 +0200 | |
---|---|---|
committer | 2020-04-30 11:28:09 +0200 | |
commit | e488e300f5c01289c10906c2e53a8e43d6de32d8 (patch) | |
tree | 5e877eebed4bfad1ac2536e6fc706914fe2316e2 /Lib/distutils/command/check.py | |
parent | bpo-40443: Remove unused imports in the stdlib (GH-19803) (diff) | |
download | cpython-e488e300f5c01289c10906c2e53a8e43d6de32d8.tar.gz cpython-e488e300f5c01289c10906c2e53a8e43d6de32d8.tar.bz2 cpython-e488e300f5c01289c10906c2e53a8e43d6de32d8.zip |
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 7ceabd3adf2..ada25006467 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): |