summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-10-02 08:43:30 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-10-02 08:43:30 (GMT)
commit092bd388ced26650cf0a5a4838a87f7ca8a9ea97 (patch)
tree8e01d43c091b4e0469c837434a465e03d91a22b8 /Misc
parent75f65e368e04c6242c103d3139571b8aaad8b4be (diff)
parent51844384f4b225d214e122edd8af65c75e50a150 (diff)
downloadcpython-092bd388ced26650cf0a5a4838a87f7ca8a9ea97.zip
cpython-092bd388ced26650cf0a5a4838a87f7ca8a9ea97.tar.gz
cpython-092bd388ced26650cf0a5a4838a87f7ca8a9ea97.tar.bz2
Issue #19137: The pprint module now correctly formats instances of set and
frozenset subclasses.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index b2030a8..f3a6e1a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -13,6 +13,9 @@ Core and Builtins
Library
-------
+- Issue #19137: The pprint module now correctly formats instances of set and
+ frozenset subclasses.
+
- Issue #10042: functools.total_ordering now correctly handles
NotImplemented being returned by the underlying comparison function (Patch
by Katie Miller)