diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-04-06 19:52:44 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-04-06 19:52:44 (GMT) |
commit | 62aa7dc7c9b279df9bfd23c3553b1c27725dc76b (patch) | |
tree | 66c7fd9944d22f175dc102e4a7eecfb661198759 /Misc | |
parent | 01362da7d00dc22e44f0c7da5c06767b8bd61882 (diff) | |
download | cpython-62aa7dc7c9b279df9bfd23c3553b1c27725dc76b.zip cpython-62aa7dc7c9b279df9bfd23c3553b1c27725dc76b.tar.gz cpython-62aa7dc7c9b279df9bfd23c3553b1c27725dc76b.tar.bz2 |
Issue #22721: An order of multiline pprint output of set or dict containing
orderable and non-orderable elements no longer depends on iteration order of
set or dict.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -19,6 +19,10 @@ Core and Builtins Library ------- +- Issue #22721: An order of multiline pprint output of set or dict containing + orderable and non-orderable elements no longer depends on iteration order of + set or dict. + - Issue #15133: _tkinter.tkapp.getboolean() now supports Tcl_Obj and always returns bool. tkinter.BooleanVar now validates input values (accepted bool, int, str, and Tcl_Obj). tkinter.BooleanVar.get() now always returns bool. |