diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2014-01-07 17:32:58 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2014-01-07 17:32:58 (GMT) |
commit | 9be238d313190d6dcb9b273ee20ce911c4e8ac85 (patch) | |
tree | b7687452e226f2fc19cdf33098ceb99dfc52ed1f /Misc/NEWS | |
parent | ad3e72557ce06cd03a2cb573872fd16552bd8201 (diff) | |
download | cpython-9be238d313190d6dcb9b273ee20ce911c4e8ac85.zip cpython-9be238d313190d6dcb9b273ee20ce911c4e8ac85.tar.gz cpython-9be238d313190d6dcb9b273ee20ce911c4e8ac85.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 _stringify() for non-ASCII strings.
* 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/NEWS')
-rw-r--r-- | Misc/NEWS | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -35,6 +35,8 @@ Core and Builtins Library ------- +- Issue #20072: Fixed multiple errors in tkinter with wantobjects is False. + - Issue #1065986: pydoc can now handle unicode strings. - Issue #16039: CVE-2013-1752: Change use of readline in imaplib module to |