summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2018-06-30 06:20:28 (GMT)
committerGitHub <noreply@github.com>2018-06-30 06:20:28 (GMT)
commit5bb5bbfca847524bab5f2368bdb48eedf5dba74f (patch)
tree7f7ba4d92c8cde6f61152b7168bb61afb41b7077 /Misc
parentf874bd1f0630644f3e3faaa2d51e6749465c70bd (diff)
downloadcpython-5bb5bbfca847524bab5f2368bdb48eedf5dba74f.zip
cpython-5bb5bbfca847524bab5f2368bdb48eedf5dba74f.tar.gz
cpython-5bb5bbfca847524bab5f2368bdb48eedf5dba74f.tar.bz2
bpo-33974: Fix passing special characters to ttk widgets. (GH-7986)
Fix passing lists and tuples of strings containing special characters '"', '\\', '{', '}' and '\n' as options to tkinter.ttk widgets.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2018-06-28-14-56-44.bpo-33974.SA8nNP.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-06-28-14-56-44.bpo-33974.SA8nNP.rst b/Misc/NEWS.d/next/Library/2018-06-28-14-56-44.bpo-33974.SA8nNP.rst
new file mode 100644
index 0000000..8c03bab
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2018-06-28-14-56-44.bpo-33974.SA8nNP.rst
@@ -0,0 +1,3 @@
+Fixed passing lists and tuples of strings containing special characters
+``"``, ``\``, ``{``, ``}`` and ``\n`` as options to :mod:`~tkinter.ttk`
+widgets.