summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-09-06 19:47:58 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2014-09-06 19:47:58 (GMT)
commit8f0a1d0f285536c9262d30b20f5f1becfe103309 (patch)
tree53491d67a7170e85b5d9f2c22f25e00ed5834162 /Misc
parentc70386ec16c373dc3c2b2778f12f1772985bd304 (diff)
downloadcpython-8f0a1d0f285536c9262d30b20f5f1becfe103309.zip
cpython-8f0a1d0f285536c9262d30b20f5f1becfe103309.tar.gz
cpython-8f0a1d0f285536c9262d30b20f5f1becfe103309.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 edbd80b..2d28920 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -32,6 +32,9 @@ Core and Builtins
Library
-------
+- Issue #22226: First letter no longer is stripped from the "status" key in
+ the result of Treeview.heading().
+
- Issue #19524: Fixed resource leak in the HTTP connection when an invalid
response is received. Patch by Martin Panter.