[issue42721] Using of simple dialogs without default root window

2020-12-25 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue42721] Using of simple dialogs without default root window

2020-12-25 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 675c97eb6c7c14c6a68ebf476c52931c1e5c1220 by Serhiy Storchaka in branch 'master': bpo-42721: Improve using simple dialogs without root window (GH-23897) https://github.com/python/cpython/commit/675c97eb6c7c14c6a68ebf476c52931c1e5c1220

[issue42721] Using of simple dialogs without default root window

2020-12-23 Thread Terry J. Reedy
Terry J. Reedy added the comment: The does not affect IDLE, as the two ask... calls pass parent. (And I may someday replace them with query.Query subclasses.) But I do prefer that tkinter act consistently and sensibly for others. The PR's initial commit message adds this justification

[issue42721] Using of simple dialogs without default root window

2020-12-22 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- keywords: +patch pull_requests: +22752 stage: -> patch review pull_request: https://github.com/python/cpython/pull/23897 ___ Python tracker

[issue42721] Using of simple dialogs without default root window

2020-12-22 Thread Serhiy Storchaka
New submission from Serhiy Storchaka : Currently, standard message boxes in tkinter.messagebox (like showinfo() or askyesnocancel()) can be called without master or default root window. If arguments master or parent are not specified and there is no default root window is still created, the