Issue #10267: Fix refleak in test_ttk_guionly. Patch by Hirokazu Yamamoto.

This commit is contained in:
Antoine Pitrou 2011-01-04 00:24:03 +00:00
parent 04ba966eab
commit 560f9dab55
1 changed files with 6 additions and 2 deletions

View File

@ -8,6 +8,7 @@ support.import_module('_tkinter')
from _tkinter import TclError
from tkinter import ttk
from tkinter.test import runtktests
from tkinter.test.support import get_tk_root
try:
ttk.Button()
@ -22,8 +23,11 @@ def test_main(enable_gui=False):
elif 'gui' not in support.use_resources:
support.use_resources.append('gui')
support.run_unittest(
*runtktests.get_tests(text=False, packages=['test_ttk']))
try:
support.run_unittest(
*runtktests.get_tests(text=False, packages=['test_ttk']))
finally:
get_tk_root().destroy()
if __name__ == '__main__':
test_main(enable_gui=True)