bpo-29446: IDLE -- add explicit imports (GH-14919)

Stop depending on tkinter import *.
This commit is contained in:
Terry Jan Reedy 2019-07-23 16:14:59 -04:00 committed by GitHub
parent 387c3c5a04
commit c6fd6c83b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -2,7 +2,9 @@
import importlib.util import importlib.util
import os import os
import platform import platform
import re
import string import string
import sys
import tokenize import tokenize
import traceback import traceback
import webbrowser import webbrowser