summaryrefslogtreecommitdiffstats
path: root/Lib/urllib
diff options
context:
space:
mode:
authorSenthil Kumaran <orsenthil@gmail.com>2010-07-11 03:15:25 (GMT)
committerSenthil Kumaran <orsenthil@gmail.com>2010-07-11 03:15:25 (GMT)
commit3402414b850938a55af78fd79d7890c935dca630 (patch)
treeca85cf327f1399ae9aa09d1c4a1e3f81b17377b0 /Lib/urllib
parenta755e14d14c206ada152be44cfd6fce45c3fe123 (diff)
downloadcpython-3402414b850938a55af78fd79d7890c935dca630.zip
cpython-3402414b850938a55af78fd79d7890c935dca630.tar.gz
cpython-3402414b850938a55af78fd79d7890c935dca630.tar.bz2
Merged revisions 82780 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r82780 | senthil.kumaran | 2010-07-11 08:42:43 +0530 (Sun, 11 Jul 2010) | 3 lines Stricter verification for file based url scheme and reliance on ftp protocol. ........
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 e59208f..cb80a36 100644
--- a/Lib/urllib/request.py
+++ b/Lib/urllib/request.py
@@ -1188,7 +1188,8 @@ class FileHandler(BaseHandler):
# Use local file or FTP depending on form of URL
def file_open(self, req):
url = req.selector
- if url[:2] == '//' and url[2:3] != '/':
+ if url[:2] == '//' and url[2:3] != '/' and (req.host and
+ req.host != 'localhost'):
req.type = 'ftp'
return self.parent.open(req)
else: