diff options
author | terryjreedy <tjreedy@udel.edu> | 2017-06-11 09:53:46 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-11 09:53:46 (GMT) |
commit | c6696feb09a8cf13e13e42ed9cc0b8c2e8795800 (patch) | |
tree | 2b1c4e04f09102521e0ba886d7d783e605c2cda6 /Lib/idlelib/query.py | |
parent | d755d19ac4f50be2b11a6efb0f0396290c8d8263 (diff) | |
download | cpython-c6696feb09a8cf13e13e42ed9cc0b8c2e8795800.zip cpython-c6696feb09a8cf13e13e42ed9cc0b8c2e8795800.tar.gz cpython-c6696feb09a8cf13e13e42ed9cc0b8c2e8795800.tar.bz2 |
[3.6] bpo-29919 Remove unused imports from idlelib [GH-137] (#2105)
Part of patch by Victor Stinner.
(cherry-pick from d6debb24e06152a827769b0cac24c47deccdeac1)
Diffstat (limited to 'Lib/idlelib/query.py')
-rw-r--r-- | Lib/idlelib/query.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/query.py b/Lib/idlelib/query.py index 3b1f1e2..5935063 100644 --- a/Lib/idlelib/query.py +++ b/Lib/idlelib/query.py @@ -24,7 +24,7 @@ import importlib import os from sys import executable, platform # Platform is set for one test. -from tkinter import Toplevel, StringVar, W, E, N, S +from tkinter import Toplevel, StringVar, W, E, S from tkinter.ttk import Frame, Button, Entry, Label from tkinter import filedialog from tkinter.font import Font |