Kaydet (Commit) 6057ba1f authored tarafından Senthil Kumaran's avatar Senthil Kumaran

Fix Issue8656 - urllib2 mangles file://-scheme URLs

üst badc7098
......@@ -679,7 +679,7 @@ class HandlerTests(unittest.TestCase):
try:
data = r.read()
headers = r.info()
newurl = r.geturl()
respurl = r.geturl()
finally:
r.close()
stats = os.stat(TESTFN)
......@@ -690,6 +690,7 @@ class HandlerTests(unittest.TestCase):
self.assertEqual(headers["Content-type"], "text/plain")
self.assertEqual(headers["Content-length"], "13")
self.assertEqual(headers["Last-modified"], modified)
self.assertEqual(respurl, url)
for url in [
"file://localhost:80%s" % urlpath,
......
......@@ -1291,7 +1291,7 @@ class FileHandler(BaseHandler):
if not host or \
(not port and socket.gethostbyname(host) in self.get_names()):
return addinfourl(open(localfile, 'rb'),
headers, 'file:'+file)
headers, 'file://'+ host + file)
except OSError, msg:
# urllib2 users shouldn't expect OSErrors coming from urlopen()
raise URLError(msg)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment