cpython/Lib/test/test_tkinter
Miss Islington (bot) b1065767b4
[3.13] gh-128562: Fix generation of the tkinter widget names (GH-128604) (GH-128791)
There were possible conflicts if the widget class name ends with a digit.
(cherry picked from commit da8825ea95)

Co-authored-by: Zhikang Yan <2951256653@qq.com>
2025-01-13 18:23:33 +02:00
..
README
__init__.py gh-90791: Enable test___all__ on ASAN build (#108286) 2023-08-22 15:52:32 +02:00
__main__.py
support.py gh-43457: Tkinter: fix design flaws in wm_attributes() (GH-111404) 2024-02-05 18:24:54 +02:00
test_colorchooser.py
test_font.py
test_geometry_managers.py [3.13] gh-104855: Update Tkinter tests for Tcl/Tk 8.7 and 9.0 (GH-120824) (GH-120864) 2024-06-22 07:17:55 +00:00
test_images.py [3.13] gh-119791: Fix new Tkinter tests for wantobjects=0 (GH-119792) (GH-119794) 2024-05-30 19:16:57 +00:00
test_loadtk.py
test_messagebox.py
test_misc.py [3.13] gh-128562: Fix generation of the tkinter widget names (GH-128604) (GH-128791) 2025-01-13 18:23:33 +02:00
test_simpledialog.py
test_text.py gh-97928: Partially restore the behavior of tkinter.Text.count() by default (GH-115031) 2024-02-11 12:43:14 +02:00
test_variables.py [3.13] gh-104855: Update Tkinter tests for Tcl/Tk 8.7 and 9.0 (GH-120824) (GH-120864) 2024-06-22 07:17:55 +00:00
test_widgets.py [3.13] gh-120873: Add tests for new widget options in Tk 8.7 (GH-120877) (GH-120879) 2024-06-22 13:43:30 +00:00
widget_tests.py [3.13] gh-120873: Add tests for new widget options in Tk 8.7 (GH-120877) (GH-120879) 2024-06-22 13:43:30 +00:00

README

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).