From 13c2ef92f81092a4e46382e52bf586eb6bf512ed Mon Sep 17 00:00:00 2001 From: Senthil Kumaran Date: Sun, 27 Dec 2009 09:11:09 +0000 Subject: Fix for issue5625 - test_urllib2 fails - urlopen error file not on local host. This is on hosts with multiple ip addresses. --- Lib/urllib2.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Lib/urllib2.py b/Lib/urllib2.py index 0f59096..87ef9fb 100644 --- a/Lib/urllib2.py +++ b/Lib/urllib2.py @@ -1264,8 +1264,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 -- cgit v0.12