-
-
Notifications
You must be signed in to change notification settings - Fork 32.4k
Closed
Labels
stdlibPython modules in the Lib dirPython modules in the Lib dirtype-bugAn unexpected behavior, bug, or errorAn unexpected behavior, bug, or error
Description
import tkinter as tk
tk._support_default_root=False
from turtledemo.__main__ import main
main()
currently fails at line 165: pane = PanedWindow(orient=HORIZONTAL, ...
with RuntimeError: No master specified and tkinter is configured to not support default root
. Since all other widget calls include a master argument, adding 'root' here fixes the failure.
Linked PRs
Metadata
Metadata
Assignees
Labels
stdlibPython modules in the Lib dirPython modules in the Lib dirtype-bugAn unexpected behavior, bug, or errorAn unexpected behavior, bug, or error