diff options
-rw-r--r-- | Lib/idlelib/PathBrowser.py | 1 | ||||
-rw-r--r-- | Lib/idlelib/TreeWidget.py | 1 | ||||
-rw-r--r-- | Misc/NEWS | 2 |
3 files changed, 2 insertions, 2 deletions
diff --git a/Lib/idlelib/PathBrowser.py b/Lib/idlelib/PathBrowser.py index 8ea553d168..5e5c6be98d 100644 --- a/Lib/idlelib/PathBrowser.py +++ b/Lib/idlelib/PathBrowser.py @@ -1,6 +1,5 @@ import os import sys -import imp import importlib.machinery from idlelib.TreeWidget import TreeItem diff --git a/Lib/idlelib/TreeWidget.py b/Lib/idlelib/TreeWidget.py index 833896cd00..1f4854ddc4 100644 --- a/Lib/idlelib/TreeWidget.py +++ b/Lib/idlelib/TreeWidget.py @@ -16,7 +16,6 @@ import os from tkinter import * -import imp from idlelib import ZoomHeight from idlelib.configHandler import idleConf @@ -479,6 +479,8 @@ C-API IDLE ---- +- Remove dead imports of imp. + - Issue #18196: Avoid displaying spurious SystemExit tracebacks. - Issue #5492: Avoid traceback when exiting IDLE caused by a race condition. |