summaryrefslogtreecommitdiffstats
path: root/Lib/urllib
diff options
context:
space:
mode:
authorSenthil Kumaran <orsenthil@gmail.com>2010-05-08 03:31:56 (GMT)
committerSenthil Kumaran <orsenthil@gmail.com>2010-05-08 03:31:56 (GMT)
commit51964772b7dd412feb7a92dd88887f4cbc6a1b49 (patch)
tree5938e297b253b8b67989c28bf19dd02842c4938f /Lib/urllib
parentadfe27a717db98370ef7f2fbf73d183e56164a90 (diff)
downloadcpython-51964772b7dd412feb7a92dd88887f4cbc6a1b49.zip
cpython-51964772b7dd412feb7a92dd88887f4cbc6a1b49.tar.gz
cpython-51964772b7dd412feb7a92dd88887f4cbc6a1b49.tar.bz2
Merged revisions 80955 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ................ r80955 | senthil.kumaran | 2010-05-08 08:59:09 +0530 (Sat, 08 May 2010) | 9 lines Merged revisions 80953 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r80953 | senthil.kumaran | 2010-05-08 08:41:50 +0530 (Sat, 08 May 2010) | 3 lines Fix Issue8656 - urllib2 mangles file://-scheme URLs ........ ................
Diffstat (limited to 'Lib/urllib')
-rw-r--r--Lib/urllib/request.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/urllib/request.py b/Lib/urllib/request.py
index 002e326..6e892e4 100644
--- a/Lib/urllib/request.py
+++ b/Lib/urllib/request.py
@@ -1216,7 +1216,8 @@ class FileHandler(BaseHandler):
host, port = splitport(host)
if not host or \
(not port and _safe_gethostbyname(host) in self.get_names()):
- return addinfourl(open(localfile, 'rb'), headers, 'file:'+file)
+ return addinfourl(open(localfile, 'rb'), headers, 'file://'+
+ host + file)
except OSError as msg:
# users shouldn't expect OSErrors coming from urlopen()
raise URLError(msg)