summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorFlorent Xicluna <florent.xicluna@gmail.com>2012-07-21 09:17:38 (GMT)
committerFlorent Xicluna <florent.xicluna@gmail.com>2012-07-21 09:17:38 (GMT)
commitd6da90f93d6d44365f5c9f6a2290be90ccfc8d60 (patch)
tree1354a065046686913cb29c1c8c8e0a6ea9e9dc79 /Misc/NEWS
parentb4bbee25b1e3f4bccac222f806b3138fb72439d6 (diff)
downloadcpython-d6da90f93d6d44365f5c9f6a2290be90ccfc8d60.zip
cpython-d6da90f93d6d44365f5c9f6a2290be90ccfc8d60.tar.gz
cpython-d6da90f93d6d44365f5c9f6a2290be90ccfc8d60.tar.bz2
Issues #10017 and #14998: Fix TypeError using pprint on dictionaries with unorderable key.
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 2a40723..3d4d049 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -98,6 +98,9 @@ Core and Builtins
Library
-------
+- Issues #10017 and #14998: Fix TypeError using pprint on dictionaries with
+ user-defined types as keys or other unorderable keys.
+
- Issue #14635: telnetlib will use poll() rather than select() when possible
to avoid failing due to the select() file descriptor limit.