bpo-35660: Fix imports in idlelib.window (GH-11434)

* 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 11303dd603)

Co-authored-by: Cheryl Sabella <cheryl.sabella@gmail.com>
This commit is contained in:
Miss Islington (bot) 2019-01-06 13:13:30 -08:00 committed by GitHub
parent 902196d867
commit be37dbff1c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View file

@ -1,4 +1,5 @@
from tkinter import *
from tkinter import Toplevel, TclError
import sys
class WindowList:

View file

@ -0,0 +1 @@
Fix imports in idlelib.window.