summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-05-16 19:35:46 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-05-16 19:35:46 (GMT)
commit2e208b7d6280ef26483f7244006832fad8e4ec89 (patch)
tree601bc297627787c7465b4e243fbd38ea0e84de8e /Misc
parent7c3ac2d1f82ed44a90de34d5bc6424c64b19ce68 (diff)
downloadcpython-2e208b7d6280ef26483f7244006832fad8e4ec89.zip
cpython-2e208b7d6280ef26483f7244006832fad8e4ec89.tar.gz
cpython-2e208b7d6280ef26483f7244006832fad8e4ec89.tar.bz2
Issue #27031: Removed dummy methods in Tkinter widget classes: tk_menuBar()
and tk_bindForTraversal().
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 63299e3..5ba249b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -280,6 +280,9 @@ Core and Builtins
Library
-------
+- Issue #27031: Removed dummy methods in Tkinter widget classes: tk_menuBar()
+ and tk_bindForTraversal().
+
- Issue #14132: Fix urllib.request redirect handling when the target only has
a query string. Original fix by Ján Janech.