[issue43937] Turtle uses the default root window

2021-04-30 Thread Terry J. Reedy
Change by Terry J. Reedy : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue43937] Turtle uses the default root window

2021-04-30 Thread miss-islington
Change by miss-islington : -- pull_requests: +24456 pull_request: https://github.com/python/cpython/pull/25594 ___ Python tracker ___

[issue43937] Turtle uses the default root window

2021-04-30 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 3.0 -> 4.0 pull_requests: +24455 pull_request: https://github.com/python/cpython/pull/25593 ___ Python tracker

[issue43937] Turtle uses the default root window

2021-04-25 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- keywords: +patch pull_requests: +24311 stage: -> patch review pull_request: https://github.com/python/cpython/pull/25591 ___ Python tracker

[issue43937] Turtle uses the default root window

2021-04-25 Thread Serhiy Storchaka
New submission from Serhiy Storchaka : 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. -- components: Library