~ubuntu-branches/ubuntu/raring/python-urllib3/raring

« back to all changes in this revision

Viewing changes to urllib3/connectionpool.py

  • Committer: Package Import Robot
  • Author(s): Jamie Strandboge
  • Date: 2012-09-06 16:15:29 UTC
  • Revision ID: package-import@ubuntu.com-20120906161529-ntjttnhm2xj7rk3c
Tags: 1.3-2ubuntu1
debian/patches/02_require-cert-verification.patch: verify SSL certificates
by default (LP: #1047054)

Show diffs side-by-side

added added

removed removed

Lines of Context:
463
463
                 strict=False, timeout=None, maxsize=1,
464
464
                 block=False, headers=None,
465
465
                 key_file=None, cert_file=None,
466
 
                 cert_reqs='CERT_NONE', ca_certs=None):
 
466
                 cert_reqs='CERT_REQUIRED', ca_certs='/etc/ssl/certs/ca-certificates.crt'):
467
467
 
468
468
        super(HTTPSConnectionPool, self).__init__(host, port,
469
469
                                                  strict, timeout, maxsize,