summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-09-06 19:47:02 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2014-09-06 19:47:02 (GMT)
commitceaf6827e2c196512184ec9212b356d7ac0d6224 (patch)
treee9523a41f9e14db1f2bd3dfe755925866973188a /Misc
parent9bc3d980e9d684df283ba91682b5a49c712e280a (diff)
downloadcpython-ceaf6827e2c196512184ec9212b356d7ac0d6224.zip
cpython-ceaf6827e2c196512184ec9212b356d7ac0d6224.tar.gz
cpython-ceaf6827e2c196512184ec9212b356d7ac0d6224.tar.bz2
Issue #22226: Added private function _splitdict() in the Tkinter module.
First letter no longer is stripped from the "status" key in the result of Treeview.heading().
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 91e1db4..2db7d5a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -22,6 +22,9 @@ Core and Builtins
Library
-------
+- Issue #22226: First letter no longer is stripped from the "status" key in
+ the result of Treeview.heading().
+
- Issue #22051: turtledemo no longer reloads examples to re-run them.
Initialization of variables and gui setup should be done in main(),
which is called each time a demo is run, but not on import.