File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed
Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change 2929button.pack(side=BOTTOM)
3030tk.mainloop()
3131"""
32+ import _tkinter # If this fails your Python may not be configured for Tk
33+ from tkinter .constants import *
3234
3335lazy import collections
3436lazy import enum
35- import sys
37+ lazy import sys
3638lazy import types
39+ lazy import re
3740
38- import _tkinter # If this fails your Python may not be configured for Tk
3941TclError = _tkinter .TclError
40- from tkinter .constants import *
41- lazy import re
4242
4343wantobjects = 1
4444_debug = False # set to True to print executed Tcl/Tk commands
@@ -71,7 +71,6 @@ def _join(value):
7171 """Internal function."""
7272 return ' ' .join (map (_stringify , value ))
7373
74-
7574def _stringify (value ):
7675 """Internal function."""
7776 if isinstance (value , (list , tuple )):
You can’t perform that action at this time.
0 commit comments