This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author csernazs
Recipients csernazs, dmorr, ned.deily, orsenthil
Date 2010-12-15.09:09:16
SpamBayes Score 0.020554084
Marked as misclassified No
Message-id <1292404158.66.0.000344950202048.issue5625@psf.upfronthosting.co.za>
In-reply-to
Content
Could you please add this change to test_urllib2.py as well?

It has the following line:
            localaddr = socket.gethostbyname(socket.gethostname())

But urllib2.py has the change related to this bug.
That makes test_urllib2 failing when gethostbyname reports different IP than gethostbyname_ex:

(Pdb) socket.gethostbyname_ex(socket.gethostname())[2]
['172.31.92.26']
(Pdb) socket.gethostbyname(socket.gethostname())
'172.31.72.206'
History
Date User Action Args
2010-12-15 09:09:18csernazssetrecipients: + csernazs, orsenthil, dmorr, ned.deily
2010-12-15 09:09:18csernazssetmessageid: <1292404158.66.0.000344950202048.issue5625@psf.upfronthosting.co.za>
2010-12-15 09:09:16csernazslinkissue5625 messages
2010-12-15 09:09:16csernazscreate