Issue # 10652: make tcl/tk tests run after __all__ test, patch by Zachary Ware.
diff --git a/Lib/test/test_tk.py b/Lib/test/test_tk.py
index f993c53..7551a7f 100644
--- a/Lib/test/test_tk.py
+++ b/Lib/test/test_tk.py
@@ -2,6 +2,9 @@
# Skip test if _tkinter wasn't built.
support.import_module('_tkinter')
+# Make sure tkinter._fix runs to set up the environment
+support.import_fresh_module('tkinter')
+
# Skip test if tk cannot be initialized.
from tkinter.test.support import check_tk_availability
check_tk_availability()