Commit 81d9feee authored by Benjamin Peterson's avatar Benjamin Peterson

merge 3.4

parents 141579c8 b811a978
...@@ -8,13 +8,6 @@ import urllib.error ...@@ -8,13 +8,6 @@ import urllib.error
import urllib.request import urllib.request
import sys import sys
try:
import ssl
except ImportError:
ssl = None
requires_ssl = unittest.skipIf(ssl is None, "SSL not supported")
support.requires("network") support.requires("network")
TIMEOUT = 60 # seconds TIMEOUT = 60 # seconds
...@@ -167,14 +160,13 @@ class OtherNetworkTests(unittest.TestCase): ...@@ -167,14 +160,13 @@ class OtherNetworkTests(unittest.TestCase):
self.assertEqual(res.geturl(), self.assertEqual(res.geturl(),
"http://www.pythontest.net/index.html#frag") "http://www.pythontest.net/index.html#frag")
@requires_ssl
def test_redirect_url_withfrag(self): def test_redirect_url_withfrag(self):
redirect_url_with_frag = "http://bit.ly/1iSHToT" redirect_url_with_frag = "http://www.pythontest.net/redir/with_frag/"
with support.transient_internet(redirect_url_with_frag): with support.transient_internet(redirect_url_with_frag):
req = urllib.request.Request(redirect_url_with_frag) req = urllib.request.Request(redirect_url_with_frag)
res = urllib.request.urlopen(req) res = urllib.request.urlopen(req)
self.assertEqual(res.geturl(), self.assertEqual(res.geturl(),
"https://docs.python.org/3.4/glossary.html#term-global-interpreter-lock") "http://www.pythontest.net/elsewhere/#frag")
def test_custom_headers(self): def test_custom_headers(self):
url = "http://www.example.com" url = "http://www.example.com"
......
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