This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Turtle uses the default root window
Type: behavior Stage: resolved
Components: Library (Lib) Versions: Python 3.10, Python 3.9, Python 3.8
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: gregorlingl, miss-islington, serhiy.storchaka, willingc
Priority: normal Keywords: patch

Created on 2021-04-25 10:31 by serhiy.storchaka, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 25591 merged serhiy.storchaka, 2021-04-25 10:46
PR 25593 merged miss-islington, 2021-04-30 22:12
PR 25594 merged miss-islington, 2021-04-30 22:13
Messages (1)
msg391849 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2021-04-25 10:31
Some of methods in the turtle module implicitly use the default root window: call global mainloop() and create PhotoImage without specifying the master window. It can cause a problem if multiple root windows are used.
History
Date User Action Args
2022-04-11 14:59:44adminsetgithub: 88103
2021-04-30 22:14:15terry.reedysetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2021-04-30 22:13:04miss-islingtonsetpull_requests: + pull_request24456
2021-04-30 22:12:39miss-islingtonsetnosy: + miss-islington
pull_requests: + pull_request24455
2021-04-25 10:46:29serhiy.storchakasetkeywords: + patch
stage: patch review
pull_requests: + pull_request24311
2021-04-25 10:31:39serhiy.storchakacreate