From: Serhiy Storchaka Date: Tue, 15 Jan 2013 15:58:14 +0000 (+0200) Subject: Issue #15861: tkinter now correctly works with lists and tuples containing X-Git-Tag: v3.3.1rc1~353 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1e2b7ee3e8b7040228e05c7ed38937bf6390c9b7;p=python Issue #15861: tkinter now correctly works with lists and tuples containing strings with whitespaces, backslashes or unbalanced braces. --- 1e2b7ee3e8b7040228e05c7ed38937bf6390c9b7 diff --cc Lib/tkinter/__init__.py index 6755be6389,a6ad88823a..ea23705699 --- a/Lib/tkinter/__init__.py +++ b/Lib/tkinter/__init__.py @@@ -40,8 -39,8 +40,9 @@@ import warning import _tkinter # If this fails your Python may not be configured for Tk TclError = _tkinter.TclError from tkinter.constants import * + import re + wantobjects = 1 TkVersion = float(_tkinter.TK_VERSION)