summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorSenthil Kumaran <orsenthil@gmail.com>2009-12-27 10:15:45 (GMT)
committerSenthil Kumaran <orsenthil@gmail.com>2009-12-27 10:15:45 (GMT)
commit88a495d223a1aa9ee409499651161d025847e9bc (patch)
tree998f115078e459fbbee2535b4d33fad3622f1ee4 /Lib
parenteb65775e22d54df312cd992a33c2e208f15c9d8a (diff)
downloadcpython-88a495d223a1aa9ee409499651161d025847e9bc.zip
cpython-88a495d223a1aa9ee409499651161d025847e9bc.tar.gz
cpython-88a495d223a1aa9ee409499651161d025847e9bc.tar.bz2
Merged revisions 77060 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ................ r77060 | senthil.kumaran | 2009-12-27 15:43:39 +0530 (Sun, 27 Dec 2009) | 10 lines Merged revisions 77058 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r77058 | senthil.kumaran | 2009-12-27 14:41:09 +0530 (Sun, 27 Dec 2009) | 4 lines Fix for issue5625 - test_urllib2 fails - urlopen error file not on local host. This is on hosts with multiple ip addresses. ........ ................
Diffstat (limited to 'Lib')
-rw-r--r--Lib/urllib/request.py11
1 files changed, 6 insertions, 5 deletions
diff --git a/Lib/urllib/request.py b/Lib/urllib/request.py
index b12da69..8229764 100644
--- a/Lib/urllib/request.py
+++ b/Lib/urllib/request.py
@@ -1190,8 +1190,9 @@ class FileHandler(BaseHandler):
def get_names(self):
if FileHandler.names is None:
try:
- FileHandler.names = (socket.gethostbyname('localhost'),
- socket.gethostbyname(socket.gethostname()))
+ FileHandler.names = tuple(
+ socket.gethostbyname_ex('localhost')[2] +
+ socket.gethostbyname_ex(socket.gethostname())[2])
except socket.gaierror:
FileHandler.names = (socket.gethostbyname('localhost'),)
return FileHandler.names
@@ -1690,7 +1691,7 @@ class URLopener:
return addinfourl(open(localname, 'rb'), headers, urlfile)
host, port = splitport(host)
if (not port
- and socket.gethostbyname(host) in (localhost(), thishost())):
+ and socket.gethostbyname(host) in (localhost() + thishost())):
urlfile = file
if file[:1] == '/':
urlfile = 'file://' + file
@@ -2000,10 +2001,10 @@ def localhost():
_thishost = None
def thishost():
- """Return the IP address of the current host."""
+ """Return the IP addresses of the current host."""
global _thishost
if _thishost is None:
- _thishost = socket.gethostbyname(socket.gethostname())
+ _thishost = tuple(socket.gethostbyname_ex(socket.gethostname()[2]))
return _thishost
_ftperrors = None