Yet another patch by Sjoerd Mullender:

Don't convert URLs to URLs using pathname2url.
This commit is contained in:
Guido van Rossum 1999-03-15 16:16:29 +00:00
parent f03fdbc063
commit 3764595c98
1 changed files with 2 additions and 2 deletions

View File

@ -326,12 +326,12 @@ class URLopener:
host, file = splithost(url)
if not host:
return addinfourl(open(url2pathname(file), 'rb'),
headers, 'file:'+pathname2url(file))
headers, 'file:'+file)
host, port = splitport(host)
if not port \
and socket.gethostbyname(host) in (localhost(), thishost()):
return addinfourl(open(url2pathname(file), 'rb'),
headers, 'file:'+pathname2url(file))
headers, 'file:'+file)
raise IOError, ('local file error', 'not on local host')
# Use FTP protocol