Merged revisions 87721 via svnmerge from

svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r87721 | antoine.pitrou | 2011-01-04 01:24:03 +0100 (mar., 04 janv. 2011) | 3 lines

  Issue #10267: Fix refleak in test_ttk_guionly.  Patch by Hirokazu Yamamoto.
........
This commit is contained in:
Antoine Pitrou 2011-01-04 00:32:11 +00:00
parent d892f77e8c
commit 7247d67e87
1 changed files with 6 additions and 2 deletions

View File

@ -29,8 +29,12 @@ def test_main(enable_gui=False):
test_support.use_resources.append('gui')
with test_support.DirsOnSysPath(lib_tk_test):
test_support.run_unittest(
*runtktests.get_tests(text=False, packages=['test_ttk']))
from test_ttk.support import get_tk_root
try:
test_support.run_unittest(
*runtktests.get_tests(text=False, packages=['test_ttk']))
finally:
get_tk_root().destroy()
if __name__ == '__main__':
test_main(enable_gui=True)