summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-04-06 19:52:44 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-04-06 19:52:44 (GMT)
commit62aa7dc7c9b279df9bfd23c3553b1c27725dc76b (patch)
tree66c7fd9944d22f175dc102e4a7eecfb661198759 /Misc
parent01362da7d00dc22e44f0c7da5c06767b8bd61882 (diff)
downloadcpython-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/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 2c58f16..8bacc13 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.