diff options
author | Victor Stinner <vstinner@python.org> | 2022-06-23 00:09:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-23 00:09:48 +0200 |
commit | 576dd901170af30fc50b0a7f07a388b38fd724a9 (patch) | |
tree | 1768ea693124ccbb81b3ac4242c0f683e9e01256 /Lib/idlelib/iomenu.py | |
parent | dd39e29ccb5119343c9db57c14cc1dac49716e51 (diff) | |
download | cpython-576dd901170af30fc50b0a7f07a388b38fd724a9.tar.gz cpython-576dd901170af30fc50b0a7f07a388b38fd724a9.zip |
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/iomenu.py')
-rw-r--r-- | Lib/idlelib/iomenu.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Lib/idlelib/iomenu.py b/Lib/idlelib/iomenu.py index ad3109df840..86ce68c06a4 100644 --- a/Lib/idlelib/iomenu.py +++ b/Lib/idlelib/iomenu.py @@ -9,7 +9,6 @@ from tkinter import filedialog from tkinter import messagebox from tkinter.simpledialog import askstring -import idlelib from idlelib.config import idleConf from idlelib.util import py_extensions @@ -21,8 +20,7 @@ if sys.platform == 'win32': else: errors = 'surrogateescape' - - + class IOBinding: # One instance per editor Window so methods know which to save, close. # Open returns focus to self.editwin if aborted. |