mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
Issue #21456: Skip two tests in test_urllib2net.py if _ssl module not present.
Patch by Remi Pointel.
This commit is contained in:
commit
8ee1513ada
2 changed files with 11 additions and 0 deletions
|
@ -7,11 +7,14 @@ import socket
|
|||
import urllib.error
|
||||
import urllib.request
|
||||
import sys
|
||||
|
||||
try:
|
||||
import ssl
|
||||
except ImportError:
|
||||
ssl = None
|
||||
|
||||
requires_ssl = unittest.skipIf(ssl is None, "SSL not supported")
|
||||
|
||||
support.requires("network")
|
||||
|
||||
TIMEOUT = 60 # seconds
|
||||
|
@ -156,6 +159,7 @@ class OtherNetworkTests(unittest.TestCase):
|
|||
|
||||
## self._test_urls(urls, self._extra_handlers()+[bauth, dauth])
|
||||
|
||||
@requires_ssl
|
||||
def test_urlwithfrag(self):
|
||||
urlwith_frag = "https://docs.python.org/2/glossary.html#glossary"
|
||||
with support.transient_internet(urlwith_frag):
|
||||
|
@ -164,6 +168,7 @@ class OtherNetworkTests(unittest.TestCase):
|
|||
self.assertEqual(res.geturl(),
|
||||
"https://docs.python.org/2/glossary.html#glossary")
|
||||
|
||||
@requires_ssl
|
||||
def test_redirect_url_withfrag(self):
|
||||
redirect_url_with_frag = "http://bit.ly/1iSHToT"
|
||||
with support.transient_internet(redirect_url_with_frag):
|
||||
|
|
|
@ -1050,6 +1050,12 @@ IDLE
|
|||
- Issue #17654: Ensure IDLE menus are customized properly on OS X for
|
||||
non-framework builds and for all variants of Tk.
|
||||
|
||||
Tests
|
||||
-----
|
||||
|
||||
- Issue #21456: Skip two tests in test_urllib2net.py if _ssl module not
|
||||
present. Patch by Remi Pointel.
|
||||
|
||||
Build
|
||||
-----
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue