summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-01-07 17:27:42 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2014-01-07 17:27:42 (GMT)
commita21acb5d95841e7d2c8491f40189a853cb7b5df4 (patch)
tree10b5b71cb87b5edb5eefc48b08b3abc912b6a5ed /Misc
parent0455c3fd28256940ad02ac39335816c1bdab0af9 (diff)
downloadcpython-a21acb5d95841e7d2c8491f40189a853cb7b5df4.zip
cpython-a21acb5d95841e7d2c8491f40189a853cb7b5df4.tar.gz
cpython-a21acb5d95841e7d2c8491f40189a853cb7b5df4.tar.bz2
Issue #20072: Fixed multiple errors in tkinter with wantobjects is False.
* Misc.image_names(), Misc.image_types(), Wm.wm_colormapwindows(), and LabelFrame.panes() now always return a tuple. * Fixed error of comparing str and int in tt.LabeledScale._adjust(). * ttk.Notebook.index() now always returns int. * ttk.Notebook.tabs() now always returns a tuple. * ttk.Entry.bbox() now always returns a tuple of ints. * ttk.Entry.validate() now always correctly works. * ttk.Combobox.current() now always returns int. * ttk.Panedwindow.sashpos() now always returns int. * ttk.Treeview.bbox() now always returns a tuple of ints. * ttk.Treeview.get_children() now always returns a tuple. * ttk.Treeview.exists() now always correctly works. * ttk.Treeview.index() now always returns int. * ttk.Treeview.tag_has() now always returns 0 or 1. * And numerous other errors in methods which returns a tuple, list or dict. * Fixed ttk tests for wantobjects is False.
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 5c51826..0a2139b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -31,6 +31,8 @@ Core and Builtins
Library
-------
+- Issue #20072: Fixed multiple errors in tkinter with wantobjects is False.
+
- Issue #20108: Avoid parameter name clash in inspect.getcallargs().
- Issue #12692: Backport the fix for ResourceWarning in test_urllib2net. This