]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
gh-73588: Fix generation of the default name of tkinter.Checkbutton. (GH-97547)
authorSerhiy Storchaka <storchaka@gmail.com>
Tue, 27 Sep 2022 11:05:05 +0000 (14:05 +0300)
committerGitHub <noreply@github.com>
Tue, 27 Sep 2022 11:05:05 +0000 (14:05 +0300)
commitadbed2d542a815b8175db965742211856b19b52f
tree02836d64eb0d9bf35c5519a8a69f11fb0e408dbf
parent68c46ae68b6e0c36a12e37285fff9ce0782ed01e
gh-73588: Fix generation of the default name of tkinter.Checkbutton. (GH-97547)

Previously, checkbuttons in different parent widgets could have the same
short name and share the same state if arguments "name" and "variable" are
not specified. Now they are globally unique.
Lib/test/test_tkinter/test_widgets.py
Lib/test/test_ttk/test_widgets.py
Lib/tkinter/__init__.py
Lib/tkinter/dialog.py
Lib/tkinter/tix.py
Misc/NEWS.d/next/Library/2022-09-25-20-42-33.gh-issue-73588.uVtjEA.rst [new file with mode: 0644]