From fc63d5a361f7d20282019cad84336a242c124267 Mon Sep 17 00:00:00 2001 From: "Miss Islington (bot)" <31488909+miss-islington@users.noreply.github.com> Date: Tue, 23 Jul 2019 13:23:43 -0700 Subject: bpo-29446: IDLE -- add explicit imports (GH-14919) (GH-14920) Stop depending on tkinter import *. (cherry picked from commit c6fd6c83b70df76421d05a7628367e64a2f83589) Co-authored-by: Terry Jan Reedy --- Lib/idlelib/editor.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Lib/idlelib/editor.py b/Lib/idlelib/editor.py index 497ee12..35027da 100644 --- a/Lib/idlelib/editor.py +++ b/Lib/idlelib/editor.py @@ -2,7 +2,9 @@ import importlib.abc import importlib.util import os import platform +import re import string +import sys import tokenize import traceback import webbrowser -- cgit v0.12