Skip to content

Commit 01000ea

Browse files
authored
Move lazy import re down in the file
1 parent ce94f9e commit 01000ea

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Lib/tkinter/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@
3636
lazy import enum
3737
lazy import sys
3838
lazy import types
39-
lazy import re
4039

4140
TclError = _tkinter.TclError
4241

@@ -46,6 +45,8 @@
4645
TkVersion = float(_tkinter.TK_VERSION)
4746
TclVersion = float(_tkinter.TCL_VERSION)
4847

48+
lazy import re
49+
4950
READABLE = _tkinter.READABLE
5051
WRITABLE = _tkinter.WRITABLE
5152
EXCEPTION = _tkinter.EXCEPTION

0 commit comments

Comments
 (0)