From: Berker Peksag Date: Sun, 6 Mar 2016 14:17:47 +0000 (+0200) Subject: Issue #2202: Fix UnboundLocalError in AbstractDigestAuthHandler.get_algorithm_impls X-Git-Tag: v3.6.0a1~523 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=48238c7e373aed6bf0f246b6c0887827397ae5ce;p=thirdparty%2FPython%2Fcpython.git Issue #2202: Fix UnboundLocalError in AbstractDigestAuthHandler.get_algorithm_impls Raise ValueError if algorithm is not MD5 or SHA. Initial patch by Mathieu Dupuy. --- 48238c7e373aed6bf0f246b6c0887827397ae5ce diff --cc Misc/NEWS index 026db17c18e9,9a775ac527cd..f7d12343855b --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -201,10 -90,10 +201,13 @@@ Core and Builtin Library ------- + - Issue #2202: Fix UnboundLocalError in + AbstractDigestAuthHandler.get_algorithm_impls. Initial patch by Mathieu Dupuy. + +- Issue #26167: Minimized overhead in copy.copy() and copy.deepcopy(). + Optimized copying and deepcopying bytearrays, NotImplemented, slices, + short lists, tuples, dicts, sets. + - Issue #25718: Fixed pickling and copying the accumulate() iterator with total is None.