diff options
Diffstat (limited to 'Lib/test/test_tk.py')
-rw-r--r-- | Lib/test/test_tk.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Lib/test/test_tk.py b/Lib/test/test_tk.py index 2eca27b..80316b3 100644 --- a/Lib/test/test_tk.py +++ b/Lib/test/test_tk.py @@ -1,10 +1,11 @@ +from test import support +# Skip test if _tkinter wasn't built. +support.import_module('_tkinter') + import tkinter from tkinter.test import runtktests -from test import support import unittest -# Skip test if _tkinter wasn't built. -support.import_module('_tkinter') import tkinter |