commit | c6fd6c83b70df76421d05a7628367e64a2f83589 | [log] [tgz] |
---|---|---|
author | Terry Jan Reedy <tjreedy@udel.edu> | Tue Jul 23 16:14:59 2019 -0400 |
committer | GitHub <noreply@github.com> | Tue Jul 23 16:14:59 2019 -0400 |
tree | e5d40092ddb2b51342a6e8a84fc11e1f3420a059 | |
parent | 387c3c5a04bc62cfa7c9dabe206ba2c582a71c05 [diff] [blame] |
bpo-29446: IDLE -- add explicit imports (GH-14919) Stop depending on tkinter import *.
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.util import os import platform +import re import string +import sys import tokenize import traceback import webbrowser