diff -r 7268838063e1 Lib/test/test_tcl.py --- a/Lib/test/test_tcl.py Tue Nov 05 00:24:05 2013 +1000 +++ b/Lib/test/test_tcl.py Mon Nov 04 15:07:46 2013 -0600 @@ -10,6 +10,9 @@ # Skip this test if the _tkinter module wasn't built. _tkinter = test_support.import_module('_tkinter') +# Issue #10652: Make sure FixTk runs to make init.tcl findable +test_support.import_fresh_module('FixTk') + from Tkinter import Tcl from _tkinter import TclError diff -r 7268838063e1 Lib/test/test_tk.py --- a/Lib/test/test_tk.py Tue Nov 05 00:24:05 2013 +1000 +++ b/Lib/test/test_tk.py Mon Nov 04 15:07:46 2013 -0600 @@ -4,6 +4,9 @@ # Skip test if _tkinter wasn't built. test_support.import_module('_tkinter') +# Issue #10652: Make sure FixTk runs to make init.tcl findable +test_support.import_fresh_module('FixTk') + this_dir = os.path.dirname(os.path.abspath(__file__)) lib_tk_test = os.path.abspath(os.path.join(this_dir, os.path.pardir, 'lib-tk', 'test')) diff -r 7268838063e1 Lib/test/test_ttk_guionly.py --- a/Lib/test/test_ttk_guionly.py Tue Nov 05 00:24:05 2013 +1000 +++ b/Lib/test/test_ttk_guionly.py Mon Nov 04 15:07:46 2013 -0600 @@ -5,6 +5,9 @@ # Skip this test if _tkinter wasn't built. test_support.import_module('_tkinter') +# Issue #10652: Make sure FixTk runs to make init.tcl findable +test_support.import_fresh_module('FixTk') + this_dir = os.path.dirname(os.path.abspath(__file__)) lib_tk_test = os.path.abspath(os.path.join(this_dir, os.path.pardir, 'lib-tk', 'test')) diff -r 7268838063e1 Lib/test/test_ttk_textonly.py --- a/Lib/test/test_ttk_textonly.py Tue Nov 05 00:24:05 2013 +1000 +++ b/Lib/test/test_ttk_textonly.py Mon Nov 04 15:07:46 2013 -0600 @@ -4,6 +4,9 @@ # Skip this test if _tkinter does not exist. test_support.import_module('_tkinter') +# Issue #10652: Make sure FixTk runs to make init.tcl findable +test_support.import_fresh_module('FixTk') + this_dir = os.path.dirname(os.path.abspath(__file__)) lib_tk_test = os.path.abspath(os.path.join(this_dir, '..', 'lib-tk', 'test'))