We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c5b01b commit f87e616Copy full SHA for f87e616
Lib/test/test_urllib2.py
@@ -1785,6 +1785,8 @@ class MyOtherHTTPHandler(urllib.request.HTTPHandler):
1785
1786
@unittest.skipUnless(support.is_resource_enabled('network'),
1787
'test requires network access')
1788
+ # bpo-46648: test fails randomly with "http://www.example.com/" URL
1789
+ @unittest.skipIf(True, "POST request to http://www.example.com/ fail randomly")
1790
def test_issue16464(self):
1791
with support.transient_internet("http://www.example.com/"):
1792
opener = urllib.request.build_opener()
0 commit comments