diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2013-03-16 06:37:06 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2013-03-16 06:37:06 (GMT) |
commit | 743c85a32e3623fa1fcdeefc9e31e53d74d700db (patch) | |
tree | d34a29b501769fac0d912db2fbdb39bd404403e8 /Lib/test/test_ttk_textonly.py | |
parent | 612528d95db89c9e728db979c65ed7d774291ba1 (diff) | |
download | cpython-743c85a32e3623fa1fcdeefc9e31e53d74d700db.zip cpython-743c85a32e3623fa1fcdeefc9e31e53d74d700db.tar.gz cpython-743c85a32e3623fa1fcdeefc9e31e53d74d700db.tar.bz2 |
Issue # 10652: make tcl/tk tests run after __all__ test, patch by Zachary Ware.
Diffstat (limited to 'Lib/test/test_ttk_textonly.py')
-rw-r--r-- | Lib/test/test_ttk_textonly.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/test/test_ttk_textonly.py b/Lib/test/test_ttk_textonly.py index 566fc9d..1cfeb15 100644 --- a/Lib/test/test_ttk_textonly.py +++ b/Lib/test/test_ttk_textonly.py @@ -4,6 +4,9 @@ from test import support # Skip this test if _tkinter does not exist. support.import_module('_tkinter') +# Make sure tkinter._fix runs to set up the environment +support.import_fresh_module('tkinter') + from tkinter.test import runtktests def test_main(): |