update to version 1.19.1 * Forgot to mention #955. * Starting o the user guide. * Add ipaddress marker to setup.cfg. * CHANGES for #897 * Version added 1.17 * Change debug level to 'debug' to match ConnectionPool * Moving some stuff to advanced usage. * Ignore only the unused import error * Uniform checks. * Add test for past date in Retry-After header * Adding all reference docs * Ok, I just gotta see what's going on here. * Adding app engine docs * Keep using the good OpenSSL * Adding timeout section * Removing absolute import in NTLMPool * Use the good OpenSSL. * Small pass at contributing * parse_url: Disallow non-integer digits explicitly in port numbers * Fixup some whitespace. * Updating copy on landing page. * Fix flake8 E305 errors * Use OS default certs when possible * Fleshing out user guide. * Fallback to the vendored ipaddress module. * Updating intersphinx to python 3.4 * Seems like version mismatch is the issue. * Improve the cipher suite comment * Retry backoff time is calculated only from the last consecutive errors sequence OBS-URL: https://build.opensuse.org/request/show/447957 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-urllib3?expand=0&rev=23
14 lines
572 B
Diff
14 lines
572 B
Diff
Index: urllib3-1.19.1/test/with_dummyserver/test_https.py
|
|
===================================================================
|
|
--- urllib3-1.19.1.orig/test/with_dummyserver/test_https.py
|
|
+++ urllib3-1.19.1/test/with_dummyserver/test_https.py
|
|
@@ -465,7 +465,7 @@ class TestHTTPS(HTTPSDummyServerTestCase
|
|
|
|
class TestHTTPS_TLSv1(HTTPSDummyServerTestCase):
|
|
certs = DEFAULT_CERTS.copy()
|
|
- certs['ssl_version'] = ssl.PROTOCOL_TLSv1
|
|
+ certs['ssl_version'] = ssl.PROTOCOL_TLSv1_2
|
|
|
|
def setUp(self):
|
|
self._pool = HTTPSConnectionPool(self.host, self.port)
|