diff options
author | Brett Cannon <brett@python.org> | 2013-06-15 13:37:38 -0400 |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2013-06-15 13:37:38 -0400 |
commit | cc39b1ed1de3050ace054b9ecf5cab494062a8ef (patch) | |
tree | aeffcca9e02e0317cebbcbddff2ea8dfb408f0b1 | |
parent | 4f4088eb6f768b0af66d6cf682651d7c6a8011b1 (diff) | |
parent | 27bbfdbc4c85011b2bd7f21d3fe3b5e8c2d8b725 (diff) | |
download | cpython-git-cc39b1ed1de3050ace054b9ecf5cab494062a8ef.tar.gz |
merge w/ 3.3
-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. |