summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2009-11-19 01:02:56 (GMT)
committerRaymond Hettinger <python@rcn.com>2009-11-19 01:02:56 (GMT)
commitb868e63443d86d9016679b6451fd143717ab6de7 (patch)
treed237f86e2ea928d6796969bf2127e1f4446bae69 /Misc/NEWS
parentc566df3f55efeaea910033e6e515c78afa15ea6c (diff)
downloadcpython-b868e63443d86d9016679b6451fd143717ab6de7.zip
cpython-b868e63443d86d9016679b6451fd143717ab6de7.tar.gz
cpython-b868e63443d86d9016679b6451fd143717ab6de7.tar.bz2
Issue 3976: fix pprint for sets, frozensets, and dicts containing unorderable types.
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 f7c24d0..5dbee19 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -46,6 +46,9 @@ Core and Builtins
Library
-------
+- Issue #3976: pprint for sets, frozensets, and dicts now succeed when
+ they contain unorderable types.
+
- Issue #7341: Close the internal file object in the TarFile constructor in
case of an error.