diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2017-03-27 14:05:26 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-27 14:05:26 (GMT) |
commit | d6debb24e06152a827769b0cac24c47deccdeac1 (patch) | |
tree | f26655d4333391e344dac8cbf6cf2dc08c18b8b4 /Lib/idlelib/idle_test/test_editor.py | |
parent | 604e74c6beb2585c81083fa85f0e5a4d46965cbc (diff) | |
download | cpython-d6debb24e06152a827769b0cac24c47deccdeac1.zip cpython-d6debb24e06152a827769b0cac24c47deccdeac1.tar.gz cpython-d6debb24e06152a827769b0cac24c47deccdeac1.tar.bz2 |
bpo-29919: Remove unused imports found by pyflakes (#137)
Make also minor PEP8 coding style fixes on modified imports.
Diffstat (limited to 'Lib/idlelib/idle_test/test_editor.py')
-rw-r--r-- | Lib/idlelib/idle_test/test_editor.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/idlelib/idle_test/test_editor.py b/Lib/idlelib/idle_test/test_editor.py index e9d29d4..64a2a88 100644 --- a/Lib/idlelib/idle_test/test_editor.py +++ b/Lib/idlelib/idle_test/test_editor.py @@ -1,7 +1,5 @@ import unittest -from tkinter import Tk, Text from idlelib.editor import EditorWindow -from test.support import requires class Editor_func_test(unittest.TestCase): def test_filename_to_unicode(self): |