diff options
author | Senthil Kumaran <orsenthil@gmail.com> | 2010-06-01 12:53:48 +0000 |
---|---|---|
committer | Senthil Kumaran <orsenthil@gmail.com> | 2010-06-01 12:53:48 +0000 |
commit | f4998acb5ab3c2fbbcb24e84ed7ed8721ab20f5c (patch) | |
tree | 4438569721063d0d4872a78c8ac1e5e39acc2d1e /Lib/urllib/request.py | |
parent | d35251dc19b6f2d1cacbb622a578c81f33d8553a (diff) | |
download | cpython-git-f4998acb5ab3c2fbbcb24e84ed7ed8721ab20f5c.tar.gz |
Merged revisions 81636 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r81636 | senthil.kumaran | 2010-06-01 18:10:07 +0530 (Tue, 01 Jun 2010) | 3 lines
Fix Issue8797 - urllib2 basic authentication fix for wrong passwords. It fails after 5 retries.
........
Diffstat (limited to 'Lib/urllib/request.py')
-rw-r--r-- | Lib/urllib/request.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Lib/urllib/request.py b/Lib/urllib/request.py index c912833cb5..776053865e 100644 --- a/Lib/urllib/request.py +++ b/Lib/urllib/request.py @@ -775,12 +775,21 @@ class AbstractBasicAuthHandler: password_mgr = HTTPPasswordMgr() self.passwd = password_mgr self.add_password = self.passwd.add_password + self.retried = 0 def http_error_auth_reqed(self, authreq, host, req, headers): # host may be an authority (without userinfo) or a URL with an # authority # XXX could be multiple headers authreq = headers.get(authreq, None) + + if self.retried > 5: + # retry sending the username:password 5 times before failing. + raise HTTPError(req.get_full_url(), 401, "basic auth failed", + headers, None) + else: + self.retried += 1 + if authreq: mo = AbstractBasicAuthHandler.rx.search(authreq) if mo: |