diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2018-06-30 06:20:28 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-30 06:20:28 (GMT) |
commit | 5bb5bbfca847524bab5f2368bdb48eedf5dba74f (patch) | |
tree | 7f7ba4d92c8cde6f61152b7168bb61afb41b7077 /Misc | |
parent | f874bd1f0630644f3e3faaa2d51e6749465c70bd (diff) | |
download | cpython-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.rst | 3 |
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. |