We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9831dea commit f0e2f9bCopy full SHA for f0e2f9b
1 file changed
Lib/tkinter/__init__.py
@@ -30,15 +30,15 @@
30
tk.mainloop()
31
"""
32
33
-import collections
34
-import enum
+lazy import collections
+lazy import enum
35
import sys
36
-import types
+lazy import types
37
38
import _tkinter # If this fails your Python may not be configured for Tk
39
TclError = _tkinter.TclError
40
from tkinter.constants import *
41
-import re
+lazy import re
42
43
wantobjects = 1
44
_debug = False # set to True to print executed Tcl/Tk commands
0 commit comments