gh-84623: Remove unused imports in stdlib (#93773)

This commit is contained in:
Victor Stinner 2022-06-13 16:28:41 +02:00 committed by GitHub
parent 65ac273280
commit 259dd71c32
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
12 changed files with 3 additions and 12 deletions

View file

@ -11,7 +11,7 @@ Refer to comments in EditorWindow autoindent code for details.
"""
import re
from tkinter import (Toplevel, Listbox, Scale, Canvas,
from tkinter import (Toplevel, Listbox, Canvas,
StringVar, BooleanVar, IntVar, TRUE, FALSE,
TOP, BOTTOM, RIGHT, LEFT, SOLID, GROOVE,
NONE, BOTH, X, Y, W, E, EW, NS, NSEW, NW,

View file

@ -12,7 +12,6 @@ TODO:
* std streams (pyshell, run),
* warning stuff (pyshell, run).
"""
from os import path
# .pyw is for Windows; .pyi is for stub files.
py_extensions = ('.py', '.pyw', '.pyi') # Order needed for open/save dialogs.