diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2013-03-16 06:51:18 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2013-03-16 06:51:18 (GMT) |
commit | b73ac548353c11f2203d51c85d052231d9d305cc (patch) | |
tree | 6f2b337b629e0db71b5d795684c394c2f2d5a6f6 /Lib/test/test_tcl.py | |
parent | 8093d6f822133ec552aa32279cd53ea8caa8168e (diff) | |
parent | 743c85a32e3623fa1fcdeefc9e31e53d74d700db (diff) | |
download | cpython-b73ac548353c11f2203d51c85d052231d9d305cc.zip cpython-b73ac548353c11f2203d51c85d052231d9d305cc.tar.gz cpython-b73ac548353c11f2203d51c85d052231d9d305cc.tar.bz2 |
Issue # 10652: make tcl/tk tests run after __all__ test, patch by Zachary Ware.
Diffstat (limited to 'Lib/test/test_tcl.py')
-rw-r--r-- | Lib/test/test_tcl.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/test/test_tcl.py b/Lib/test/test_tcl.py index d38c0b5..0cc21c9 100644 --- a/Lib/test/test_tcl.py +++ b/Lib/test/test_tcl.py @@ -8,6 +8,9 @@ from test import support # Skip this test if the _tkinter module wasn't built. _tkinter = support.import_module('_tkinter') +# Make sure tkinter._fix runs to set up the environment +support.import_fresh_module('tkinter') + from tkinter import Tcl from _tkinter import TclError |