summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-05-28 15:38:27 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2014-05-28 15:38:27 (GMT)
commitb49eff25b7af3398b44f1b5e8b29748948c22b69 (patch)
tree89cc71f2b8e7e3fd7f8c83f112a7d685f884d82f /Misc
parentffc1e6d42b3e8ffff7cdc6ff80dc9582c86a26c8 (diff)
downloadcpython-b49eff25b7af3398b44f1b5e8b29748948c22b69.zip
cpython-b49eff25b7af3398b44f1b5e8b29748948c22b69.tar.gz
cpython-b49eff25b7af3398b44f1b5e8b29748948c22b69.tar.bz2
Issue #21402: tkinter.ttk now works when default root window is not set.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index f82d3c5..5121030 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -18,6 +18,8 @@ Core and Builtins
Library
-------
+- Issue #21402: tkinter.ttk now works when default root window is not set.
+
- Issue #10203: sqlite3.Row now truly supports sequence protocol. In particulr
it supports reverse() and negative indices. Original patch by Claudiu Popa.