mirror of
https://github.com/python/cpython.git
synced 2025-11-10 10:32:04 +00:00
svn+ssh://pythondev/python/trunk ........ r69050 | guilherme.polo | 2009-01-28 11:09:03 -0200 (Wed, 28 Jan 2009) | 2 lines Added the ttk module. See issue #2983: Ttk support for Tkinter. ........
14 lines
417 B
Python
14 lines
417 B
Python
from test import support
|
|
from tkinter.test import runtktests
|
|
|
|
def test_main(enable_gui=False):
|
|
if enable_gui:
|
|
if support.use_resources is None:
|
|
support.use_resources = ['gui']
|
|
elif 'gui' not in support.use_resources:
|
|
support.use_resources.append('gui')
|
|
|
|
support.run_unittest(*runtktests.get_tests(text=False))
|
|
|
|
if __name__ == '__main__':
|
|
test_main(enable_gui=True)
|