summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2011-01-24 04:52:27 (GMT)
committerRaymond Hettinger <python@rcn.com>2011-01-24 04:52:27 (GMT)
commitbf1d2bc7cbebf59c9128805e8261406420053311 (patch)
tree499abe718d5db1d4460f1d914e8f9b16a97434ad /Misc
parentacff595a4eca82c2742f3158c2a7709cc37f4d70 (diff)
downloadcpython-bf1d2bc7cbebf59c9128805e8261406420053311.zip
cpython-bf1d2bc7cbebf59c9128805e8261406420053311.tar.gz
cpython-bf1d2bc7cbebf59c9128805e8261406420053311.tar.bz2
Make the type consistent for hashlib algorithm constants. (Reviewed by Benjamin).
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 54a647a..036e562 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -16,6 +16,9 @@ Core and Builtins
Library
-------
+- Have hashlib.algorithms_available and hashlib.algorithms_guaranteed both
+ return sets instead of one returning a tuple and the other a frozenset.
+
- Issue #10987: Fix the recursion limit handling in the _pickle module.
- Issue #10983: Fix several bugs making tunnel requests in http.client.