diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2017-03-27 16:05:26 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-27 16:05:26 +0200 |
commit | d6debb24e06152a827769b0cac24c47deccdeac1 (patch) | |
tree | f26655d4333391e344dac8cbf6cf2dc08c18b8b4 /Lib/test/test_imaplib.py | |
parent | 604e74c6beb2585c81083fa85f0e5a4d46965cbc (diff) | |
download | cpython-git-d6debb24e06152a827769b0cac24c47deccdeac1.tar.gz |
bpo-29919: Remove unused imports found by pyflakes (#137)
Make also minor PEP8 coding style fixes on modified imports.
Diffstat (limited to 'Lib/test/test_imaplib.py')
-rw-r--r-- | Lib/test/test_imaplib.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/test/test_imaplib.py b/Lib/test/test_imaplib.py index fac6b57081..5ef9512c3f 100644 --- a/Lib/test/test_imaplib.py +++ b/Lib/test/test_imaplib.py @@ -10,7 +10,6 @@ import os.path import socketserver import time import calendar -import inspect from test.support import (reap_threads, verbose, transient_internet, run_with_tz, run_with_locale) |