Commit 97d743f4 authored by Ned Deily's avatar Ned Deily

Issue #20939: Backout test_urllib2.test_issue16464 disables:

    68335b8afb1f 3.4
    ad0c75b7bd7d default
parent c3b9dea6
......@@ -6,10 +6,6 @@ import io
import socket
import array
import sys
try:
import ssl
except ImportError:
ssl = None
import urllib.request
# The proxy bypass method imported below has logic specific to the OSX
......@@ -1442,8 +1438,6 @@ class MiscTests(unittest.TestCase):
@unittest.skipUnless(support.is_resource_enabled('network'),
'test requires network access')
@unittest.skipIf(ssl is None,
'test requires the ssl module')
def test_issue16464(self):
opener = urllib.request.build_opener()
request = urllib.request.Request("http://www.python.org/~jeremy/")
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment