]> granicus.if.org Git - python/commitdiff
Issue #20072: Fixed multiple errors in tkinter with wantobjects is False.
authorSerhiy Storchaka <storchaka@gmail.com>
Tue, 7 Jan 2014 17:30:36 +0000 (19:30 +0200)
committerSerhiy Storchaka <storchaka@gmail.com>
Tue, 7 Jan 2014 17:30:36 +0000 (19:30 +0200)
* 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.

1  2 
Lib/tkinter/__init__.py
Misc/NEWS

Simple merge
diff --cc Misc/NEWS
index 9e8936f4652521903e2736ac4891c86871677a21,0a2139b5a5577b4263aeb6ad49b15b27b97b8e50..82bac3a428fc7f63ddfc044272199d26d695e14c
+++ b/Misc/NEWS
@@@ -2,30 -2,10 +2,32 @@@
  Python News
  +++++++++++
  
 -What's New in Python 3.3.4 release candidate 1?
 +What's New in Python 3.4.0 Release Candidate 1?
  ===============================================
  
 -*Not yet released, see sections below for changes released in 3.3.3*
 +Release date: 2014-01-19
 +
 +Core and Builtins
 +-----------------
 +
 +Library
 +-------
 +
++- Issue #20072: Fixed multiple errors in tkinter with wantobjects is False.
++
 +Tools/Demos
 +-----------
 +
 +- Issue #20143: The line numbers reported in Argument Clinic errors are
 +  now more accurate.
 +
 +- Issue #20142: Py_buffer variables generated by Argument Clinic are now
 +  initialized with a default value.
 +
 +What's New in Python 3.4.0 Beta 2?
 +==================================
 +
 +Release date: 2014-01-05
  
  Core and Builtins
  -----------------