]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
bpo-42721: Improve using simple dialogs without root window (GH-23897)
authorSerhiy Storchaka <storchaka@gmail.com>
Fri, 25 Dec 2020 18:19:20 +0000 (20:19 +0200)
committerGitHub <noreply@github.com>
Fri, 25 Dec 2020 18:19:20 +0000 (20:19 +0200)
commit675c97eb6c7c14c6a68ebf476c52931c1e5c1220
treec79798eb94cff2cd416dc10ae4e127da85460a51
parent586f3dbe15139cafb2a6ffb82cea146906561844
bpo-42721: Improve using simple dialogs without root window (GH-23897)

When simple query dialogs (tkinter.simpledialog), message boxes
(tkinter.messagebox) or color choose dialog (tkinter.colorchooser)
are created without arguments master and parent, and the default
root window is not yet created, a new temporary hidden root window
will be created automatically. It will not be set as the default root
window and will be destroyed right after closing the dialog window.
It will help to use these simple dialog windows in programs which do
not need other GUI.

Previously, message boxes and color chooser created the blank root
window and left it after closing the dialog window, and query dialogs
just raised an exception.

Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
Lib/tkinter/__init__.py
Lib/tkinter/commondialog.py
Lib/tkinter/simpledialog.py
Lib/tkinter/test/test_tkinter/test_colorchooser.py [new file with mode: 0644]
Lib/tkinter/test/test_tkinter/test_messagebox.py [new file with mode: 0644]
Lib/tkinter/test/test_tkinter/test_simpledialog.py
Misc/NEWS.d/next/Library/2020-12-22-22-47-22.bpo-42721.I5Ai5L.rst [new file with mode: 0644]