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 459e26f commit 1b8a34aCopy full SHA for 1b8a34a
Lib/test/test_urllib2.py
@@ -1788,6 +1788,8 @@ class MyOtherHTTPHandler(urllib.request.HTTPHandler):
1788
1789
@unittest.skipUnless(support.is_resource_enabled('network'),
1790
'test requires network access')
1791
+ # bpo-46648: test fails randomly with "http://www.example.com/" URL
1792
+ @unittest.skipIf(True, "POST request to http://www.example.com/ fail randomly")
1793
def test_issue16464(self):
1794
with socket_helper.transient_internet("http://www.example.com/"):
1795
opener = urllib.request.build_opener()
0 commit comments