mirror of
https://github.com/python/cpython.git
synced 2025-11-02 03:01:58 +00:00
Avoid the fancy handler for error 401 (request authentication).
This commit is contained in:
parent
78089e20b6
commit
89efda363f
1 changed files with 7 additions and 4 deletions
|
|
@ -93,10 +93,8 @@ rooturl -- URL to start checking
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
# ' Emacs bait
|
|
||||||
|
|
||||||
|
__version__ = "0.5"
|
||||||
__version__ = "0.4"
|
|
||||||
|
|
||||||
|
|
||||||
import sys
|
import sys
|
||||||
|
|
@ -487,7 +485,12 @@ class MyURLopener(urllib.FancyURLopener):
|
||||||
def __init__(*args):
|
def __init__(*args):
|
||||||
self = args[0]
|
self = args[0]
|
||||||
apply(urllib.FancyURLopener.__init__, args)
|
apply(urllib.FancyURLopener.__init__, args)
|
||||||
self.addheaders = [('User-agent', 'Python-webchecker/%s' % __version__)]
|
self.addheaders = [
|
||||||
|
('User-agent', 'Python-webchecker/%s' % __version__),
|
||||||
|
]
|
||||||
|
|
||||||
|
def http_error_401(self, url, fp, errcode, errmsg, headers):
|
||||||
|
return None
|
||||||
|
|
||||||
def open_file(self, url):
|
def open_file(self, url):
|
||||||
path = urllib.url2pathname(urllib.unquote(url))
|
path = urllib.url2pathname(urllib.unquote(url))
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue