diff options
-rw-r--r-- | Lib/idlelib/window.py | 3 | ||||
-rw-r--r-- | Misc/NEWS.d/next/IDLE/2019-01-04-19-14-29.bpo-35660.hMxI7N.rst | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/Lib/idlelib/window.py b/Lib/idlelib/window.py index b2488b2..460d5b6 100644 --- a/Lib/idlelib/window.py +++ b/Lib/idlelib/window.py @@ -1,4 +1,5 @@ -from tkinter import * +from tkinter import Toplevel, TclError +import sys class WindowList: diff --git a/Misc/NEWS.d/next/IDLE/2019-01-04-19-14-29.bpo-35660.hMxI7N.rst b/Misc/NEWS.d/next/IDLE/2019-01-04-19-14-29.bpo-35660.hMxI7N.rst new file mode 100644 index 0000000..1ad83fe --- /dev/null +++ b/Misc/NEWS.d/next/IDLE/2019-01-04-19-14-29.bpo-35660.hMxI7N.rst @@ -0,0 +1 @@ +Fix imports in idlelib.window. |