diff options
author | Senthil Kumaran <senthil@uthcode.com> | 2012-10-22 16:43:04 (GMT) |
---|---|---|
committer | Senthil Kumaran <senthil@uthcode.com> | 2012-10-22 16:43:04 (GMT) |
commit | 40d8078f418104e8558e72ca71484d8f3df088ce (patch) | |
tree | 15df1dbcc062bc733b9c13af75e7568197a25c10 /Lib/urllib/request.py | |
parent | efb15993f8c7788958da288cd66cf49b8afdd871 (diff) | |
download | cpython-40d8078f418104e8558e72ca71484d8f3df088ce.zip cpython-40d8078f418104e8558e72ca71484d8f3df088ce.tar.gz cpython-40d8078f418104e8558e72ca71484d8f3df088ce.tar.bz2 |
Issue #16301: Fix the localhost verification in urllib/request.py for file://. Modify tests to use localhost for local temp files, which could make Windows Buildbot (#16300) happy
Diffstat (limited to 'Lib/urllib/request.py')
-rw-r--r-- | Lib/urllib/request.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/urllib/request.py b/Lib/urllib/request.py index f2ea952..2de3b99d 100644 --- a/Lib/urllib/request.py +++ b/Lib/urllib/request.py @@ -1905,7 +1905,7 @@ class URLopener: return addinfourl(open(localname, 'rb'), headers, urlfile) host, port = splitport(host) if (not port - and socket.gethostbyname(host) in (localhost() + thishost())): + and socket.gethostbyname(host) in ((localhost(),) + thishost())): urlfile = file if file[:1] == '/': urlfile = 'file://' + file |