Thanks to visit codestin.com Credit goes to github.com
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 6c4e44e commit 1578de2Copy full SHA for 1578de2
1 file changed
Lib/test/test_urllib2.py
@@ -1790,6 +1790,8 @@ class MyOtherHTTPHandler(urllib.request.HTTPHandler):
1790
1791
@unittest.skipUnless(support.is_resource_enabled('network'),
1792
'test requires network access')
1793
+ # bpo-46648: test fails randomly with "http://www.example.com/" URL
1794
+ @unittest.skipIf(True, "POST request to http://www.example.com/ fail randomly")
1795
def test_issue16464(self):
1796
with socket_helper.transient_internet("http://www.example.com/"):
1797
opener = urllib.request.build_opener()
0 commit comments