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.

作者 ezio.melotti
收信人 brett.cannon, ezio.melotti, orsenthil, pitrou
日期 2009-05-15.01:39:18
SpamBayes Score 0.001096822
Marked as misclassified
Message-id <1242351559.81.0.610328211834.issue3583@psf.upfronthosting.co.za>
In-reply-to
内容
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).
历史
日期 用户 动作 参数
2009-05-15 01:39:20ezio.melotti修改recipients: + ezio.melotti, brett.cannon, orsenthil, pitrou
2009-05-15 01:39:19ezio.melotti修改messageid: <1242351559.81.0.610328211834.issue3583@psf.upfronthosting.co.za>
2009-05-15 01:39:18ezio.melotti链接issue3583 messages
2009-05-15 01:39:18ezio.melotti创建