summaryrefslogtreecommitdiffstats
path: root/Lib/urllib
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-02-04 06:01:35 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2016-02-04 06:01:35 (GMT)
commita03702252f591e477db0576bea589d21afdfa601 (patch)
tree1aa9b9315fe934df262fa72b04865063f012a8ad /Lib/urllib
parent46f7785e28c17f33252a95a57dd3827811291394 (diff)
downloadcpython-a03702252f591e477db0576bea589d21afdfa601.zip
cpython-a03702252f591e477db0576bea589d21afdfa601.tar.gz
cpython-a03702252f591e477db0576bea589d21afdfa601.tar.bz2
Issue #12923: Reset FancyURLopener's redirect counter even on exception
Based on patches by Brian Brazil and Daniel Rocco.
Diffstat (limited to 'Lib/urllib')
-rw-r--r--Lib/urllib/request.py24
1 files changed, 13 insertions, 11 deletions
diff --git a/Lib/urllib/request.py b/Lib/urllib/request.py
index a7fd017..4c16518 100644
--- a/Lib/urllib/request.py
+++ b/Lib/urllib/request.py
@@ -2050,18 +2050,20 @@ class FancyURLopener(URLopener):
def http_error_302(self, url, fp, errcode, errmsg, headers, data=None):
"""Error 302 -- relocated (temporarily)."""
self.tries += 1
- if self.maxtries and self.tries >= self.maxtries:
- if hasattr(self, "http_error_500"):
- meth = self.http_error_500
- else:
- meth = self.http_error_default
+ try:
+ if self.maxtries and self.tries >= self.maxtries:
+ if hasattr(self, "http_error_500"):
+ meth = self.http_error_500
+ else:
+ meth = self.http_error_default
+ return meth(url, fp, 500,
+ "Internal Server Error: Redirect Recursion",
+ headers)
+ result = self.redirect_internal(url, fp, errcode, errmsg,
+ headers, data)
+ return result
+ finally:
self.tries = 0
- return meth(url, fp, 500,
- "Internal Server Error: Redirect Recursion", headers)
- result = self.redirect_internal(url, fp, errcode, errmsg, headers,
- data)
- self.tries = 0
- return result
def redirect_internal(self, url, fp, errcode, errmsg, headers, data):
if 'location' in headers: