gh-118760: Restore the default value of tkinter.wantobjects to 1 (GH-118784)

It was set to 2 in 65f5e586a1 (GH-98592).
This commit is contained in:
Serhiy Storchaka 2024-05-20 22:21:04 +03:00 committed by GitHub
parent 6b80a5b20f
commit e188527c34
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 9 additions and 18 deletions

View file

@ -40,7 +40,7 @@ TclError = _tkinter.TclError
from tkinter.constants import *
import re
wantobjects = 2
wantobjects = 1
_debug = False # set to True to print executed Tcl/Tk commands
TkVersion = float(_tkinter.TK_VERSION)