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 ezio.melotti
Recipients brett.cannon, ezio.melotti, orsenthil, pitrou
Date 2009-05-15.01:39:18
SpamBayes Score 0.001096822
Marked as misclassified No
Message-id <1242351559.81.0.610328211834.issue3583@psf.upfronthosting.co.za>
In-reply-to
Content
I got a similar problem but here the ISP returned an error/search page
and a "302 Found". test_urllibnet.test_bad_address() failed with
"AssertionError: IOError not raised by urlopen"

>>> import http.client
>>> conn = http.client.HTTPConnection("www.somerandominvalidpage.edu")
>>> conn.request("GET", "/")
>>> r1 = conn.getresponse()
>>> r1.status, r1.reason
(302, 'Found')

test_xmlrpc_net failed for the same reason (see #6027).
History
Date User Action Args
2009-05-15 01:39:20ezio.melottisetrecipients: + ezio.melotti, brett.cannon, orsenthil, pitrou
2009-05-15 01:39:19ezio.melottisetmessageid: <1242351559.81.0.610328211834.issue3583@psf.upfronthosting.co.za>
2009-05-15 01:39:18ezio.melottilinkissue3583 messages
2009-05-15 01:39:18ezio.melotticreate