diff options
author | Victor Stinner <vstinner@python.org> | 2022-06-22 22:09:48 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-22 22:09:48 (GMT) |
commit | 576dd901170af30fc50b0a7f07a388b38fd724a9 (patch) | |
tree | 1768ea693124ccbb81b3ac4242c0f683e9e01256 /Lib/idlelib/idle_test/test_editor.py | |
parent | dd39e29ccb5119343c9db57c14cc1dac49716e51 (diff) | |
download | cpython-576dd901170af30fc50b0a7f07a388b38fd724a9.zip cpython-576dd901170af30fc50b0a7f07a388b38fd724a9.tar.gz cpython-576dd901170af30fc50b0a7f07a388b38fd724a9.tar.bz2 |
gh-84623: Remove unused imports in idlelib (#94143)
Remove commented code in test_debugger_r.py.
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
Diffstat (limited to 'Lib/idlelib/idle_test/test_editor.py')
-rw-r--r-- | Lib/idlelib/idle_test/test_editor.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/idlelib/idle_test/test_editor.py b/Lib/idlelib/idle_test/test_editor.py index 8665d68..fdb47ab 100644 --- a/Lib/idlelib/idle_test/test_editor.py +++ b/Lib/idlelib/idle_test/test_editor.py @@ -5,7 +5,6 @@ import unittest from collections import namedtuple from test.support import requires from tkinter import Tk -from idlelib.idle_test.mock_idle import Func Editor = editor.EditorWindow |