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 01000ea commit 1da6e7bCopy full SHA for 1da6e7b
1 file changed
Lib/tkinter/__init__.py
@@ -31,12 +31,12 @@
31
"""
32
import _tkinter # If this fails your Python may not be configured for Tk
33
from tkinter.constants import *
34
+import collections
35
+import enum
36
-lazy import collections
-lazy import enum
37
lazy import sys
38
lazy import types
39
-
+lazy import re
40
TclError = _tkinter.TclError
41
42
wantobjects = 1
@@ -45,8 +45,6 @@
45
TkVersion = float(_tkinter.TK_VERSION)
46
TclVersion = float(_tkinter.TCL_VERSION)
47
48
-lazy import re
49
50
READABLE = _tkinter.READABLE
51
WRITABLE = _tkinter.WRITABLE
52
EXCEPTION = _tkinter.EXCEPTION
0 commit comments