cpython/Lib/tkinter/test
Miss Islington (bot) 30b9c4d784
gh-97928: Fix handling options starting with "-" in tkinter.Text.count() (GH-98436)
Previously they were silently ignored. Now they are errors.
(cherry picked from commit e4ec8de6fa)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
2022-10-19 02:57:27 -07:00
..
test_tkinter gh-97928: Fix handling options starting with "-" in tkinter.Text.count() (GH-98436) 2022-10-19 02:57:27 -07:00
test_ttk gh-73588: Fix generation of the default name of tkinter.Checkbutton. (GH-97547) 2022-09-27 04:34:24 -07:00
__init__.py
README
support.py gh-91827: Add method info_pathlevel() in tkinter (GH-91829) 2022-05-06 13:50:38 +03:00
widget_tests.py gh-91827: Add method info_pathlevel() in tkinter (GH-91829) 2022-05-06 13:50:38 +03:00

Writing new tests
=================

Precaution
----------

    New tests should always use only one Tk window at once, like all the
    current tests do. This means that you have to destroy the current window
    before creating another one, and clean up after the test. The motivation
    behind this is that some tests may depend on having its window focused
    while it is running to work properly, and it may be hard to force focus
    on your window across platforms (right now only test_traversal at
    test_ttk.test_widgets.NotebookTest depends on this).