diff options
Diffstat (limited to 'debian/patches')
-rw-r--r-- | debian/patches/02_require-cert-verification.patch | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/debian/patches/02_require-cert-verification.patch b/debian/patches/02_require-cert-verification.patch index 1c09012..1b5992c 100644 --- a/debian/patches/02_require-cert-verification.patch +++ b/debian/patches/02_require-cert-verification.patch @@ -3,11 +3,11 @@ Description: require SSL certificate validation by default by using CERT_REQUIRED and using the system /etc/ssl/certs/ca-certificates.crt Bug-Ubuntu: https://launchpad.net/bugs/1047054 Bug-Debian: http://bugs.debian.org/686872 -Last-Update: 2014-05-24 +Last-Update: 2014-09-01 --- a/urllib3/connectionpool.py +++ b/urllib3/connectionpool.py -@@ -591,6 +591,8 @@ +@@ -628,6 +628,8 @@ ``ssl_version`` are only used if :mod:`ssl` is available and are fed into :meth:`urllib3.util.ssl_wrap_socket` to upgrade the connection socket into an SSL socket. @@ -16,9 +16,9 @@ Last-Update: 2014-05-24 """ scheme = 'https' -@@ -600,8 +602,8 @@ - strict=False, timeout=None, maxsize=1, - block=False, headers=None, +@@ -637,8 +639,8 @@ + strict=False, timeout=Timeout.DEFAULT_TIMEOUT, maxsize=1, + block=False, headers=None, retries=None, _proxy=None, _proxy_headers=None, - key_file=None, cert_file=None, cert_reqs=None, - ca_certs=None, ssl_version=None, |