summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2016-03-06 14:16:40 (GMT)
committerBerker Peksag <berker.peksag@gmail.com>2016-03-06 14:16:40 (GMT)
commite88dd1c32c2961e0fe40b09c48904451fa1eba9a (patch)
tree8bc1614b2ffb4bf2878b63ecca28175d84a7e86c /Misc
parent8cc859c103287089daeece91793fd2acc49baff9 (diff)
downloadcpython-e88dd1c32c2961e0fe40b09c48904451fa1eba9a.zip
cpython-e88dd1c32c2961e0fe40b09c48904451fa1eba9a.tar.gz
cpython-e88dd1c32c2961e0fe40b09c48904451fa1eba9a.tar.bz2
Issue #2202: Fix UnboundLocalError in AbstractDigestAuthHandler.get_algorithm_impls
Raise ValueError if algorithm is not MD5 or SHA. Initial patch by Mathieu Dupuy.
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 8257b0f..9a775ac 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -91,6 +91,9 @@ Core and Builtins
Library
-------
+- Issue #2202: Fix UnboundLocalError in
+ AbstractDigestAuthHandler.get_algorithm_impls. Initial patch by Mathieu Dupuy.
+
- Issue #25718: Fixed pickling and copying the accumulate() iterator with
total is None.