summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-10-02 08:40:49 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-10-02 08:40:49 (GMT)
commit51844384f4b225d214e122edd8af65c75e50a150 (patch)
tree09f4e10baa384ff1f1671b75f923e530cdbc0f09 /Misc/NEWS
parent224c87d60ca32b99a6a670545c5b09b2bdef0b41 (diff)
downloadcpython-51844384f4b225d214e122edd8af65c75e50a150.zip
cpython-51844384f4b225d214e122edd8af65c75e50a150.tar.gz
cpython-51844384f4b225d214e122edd8af65c75e50a150.tar.bz2
Issue #19137: The pprint module now correctly formats instances of set and
frozenset subclasses.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index cd9a2c1..48d5898 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -71,6 +71,9 @@ Core and Builtins
Library
-------
+- Issue #19137: The pprint module now correctly formats instances of set and
+ frozenset subclasses.
+
- Issue #19092: contextlib.ExitStack now correctly reraises exceptions
from the __exit__ callbacks of inner context managers (Patch by Hrvoje
Nikšić)