summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/iomenu.py
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2022-06-22 22:36:47 (GMT)
committerGitHub <noreply@github.com>2022-06-22 22:36:47 (GMT)
commita562d2dc8b13cadf60963049d2842998e7d1e4d6 (patch)
tree5635a07210a1949fc1a40cac2dcdf86dff902df1 /Lib/idlelib/iomenu.py
parent5bca4bba981be517ff696e2ae3056865742983de (diff)
downloadcpython-a562d2dc8b13cadf60963049d2842998e7d1e4d6.zip
cpython-a562d2dc8b13cadf60963049d2842998e7d1e4d6.tar.gz
cpython-a562d2dc8b13cadf60963049d2842998e7d1e4d6.tar.bz2
gh-84623: Remove unused imports in idlelib (GH-94143)
Remove commented code in test_debugger_r.py. Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu> (cherry picked from commit 576dd901170af30fc50b0a7f07a388b38fd724a9) Co-authored-by: Victor Stinner <vstinner@python.org>
Diffstat (limited to 'Lib/idlelib/iomenu.py')
-rw-r--r--Lib/idlelib/iomenu.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/Lib/idlelib/iomenu.py b/Lib/idlelib/iomenu.py
index ad3109d..86ce68c 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.