• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

test_tkinter/23-Nov-2023-3,3252,816

test_ttk/23-Nov-2023-2,8352,050

READMED23-Nov-2023566 1511

__init__.pyD23-Nov-20230 10

runtktests.pyD23-Nov-20232.2 KiB7056

support.pyD23-Nov-20233.6 KiB11899

widget_tests.pyD23-Nov-202319.4 KiB544443

README

1Writing new tests
2=================
3
4Precaution
5----------
6
7    New tests should always use only one Tk window at once, like all the
8    current tests do. This means that you have to destroy the current window
9    before creating another one, and clean up after the test. The motivation
10    behind this is that some tests may depend on having its window focused
11    while it is running to work properly, and it may be hard to force focus
12    on your window across platforms (right now only test_traversal at
13    test_ttk.test_widgets.NotebookTest depends on this).
14
15