* bpo-35660: IDLE: Remove * import from window.py
* sys was being imported through the *, so also added an import sys.
* Update 2019-01-04-19-14-29.bpo-35660.hMxI7N.rst
Anyone who wants details can check the issue, where I added the point about the sys import bug.
(cherry picked from commit
11303dd6035a7d7f78025ce5a3e3b9bdf7380c9a)
Co-authored-by: Cheryl Sabella <cheryl.sabella@gmail.com>
-from tkinter import *
+from tkinter import Toplevel, TclError
+import sys
class WindowList:
--- /dev/null
+Fix imports in idlelib.window.