commit | 6057ba1f97ea19c484b03d5dd2f431e7767fefd1 | [log] [tgz] |
---|---|---|
author | Senthil Kumaran <orsenthil@gmail.com> | Sat May 08 03:11:50 2010 +0000 |
committer | Senthil Kumaran <orsenthil@gmail.com> | Sat May 08 03:11:50 2010 +0000 |
tree | ff9050c2a01c8d480a583dedc083cdb44dea728a | |
parent | badc709847379cf27785af2d4c1a05c4e27010c2 [diff] [blame] |
Fix Issue8656 - urllib2 mangles file://-scheme URLs
diff --git a/Lib/urllib2.py b/Lib/urllib2.py index 122f777..84f7833 100644 --- a/Lib/urllib2.py +++ b/Lib/urllib2.py
@@ -1291,7 +1291,7 @@ 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)