[Python-modules-commits] [python-urllib3] branch master updated (a81288d -> dde3d57)

Daniele Tricoli eriol-guest at moszumanska.debian.org
Tue Jul 11 02:10:31 UTC 2017


This is an automated email from the git hooks/post-receive script.

eriol-guest pushed a change to branch master
in repository python-urllib3.

      from  a81288d   s/UNRELEASED/unstable/
       new  a403e7e   New upstream release
       new  181a506   record new upstream branch created by importing python-urllib3_1.21.1.orig.tar.gz
       new  6dde9b0   Import python-urllib3_1.21.1.orig.tar.gz
       new  c98d956   Do not use embedded copy of python-six.
       new  c717d5c   require SSL certificate validation by default by using
       new  b132bda   Do not use logging-clear-handlers to see all logging output and
       new  ddf0645   Do not use embedded copy of ssl.match_hostname, when possible
       new  45ea2cd   merge patched into master
       new  6b57b51   Add python-psutil{,3} to Build-Depends
       new  dde3d57   Add version constraint for six

The 10 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 CHANGES.rst                                        |  85 +++
 CONTRIBUTORS.txt                                   |  18 +
 PKG-INFO                                           |  97 ++-
 README.rst                                         |  10 +-
 debian/.git-dpm                                    |  14 +-
 debian/changelog                                   |   6 +
 debian/control                                     |   6 +-
 .../01_do-not-use-embedded-python-six.patch        | 110 +--
 debian/patches/02_require-cert-verification.patch  |   8 +-
 debian/patches/04_relax_nosetests_options.patch    |   4 +-
 .../05_avoid-embedded-ssl-match-hostname.patch     |   2 +-
 dev-requirements.txt                               |   1 +
 docs/advanced-usage.rst                            |   6 -
 dummyserver/.DS_Store                              | Bin 0 -> 6148 bytes
 dummyserver/certs/cacert.pem                       |  22 +-
 .../certs/{client.pem => server.combined.pem}      |  15 +
 dummyserver/handlers.py                            |   6 +-
 dummyserver/server.py                              |   7 +-
 dummyserver/testcase.py                            |   7 +-
 setup.cfg                                          |   3 +-
 setup.py                                           |   2 +-
 test/__init__.py                                   |  76 +-
 test/benchmark.py                                  |   6 +-
 test/contrib/test_gae_manager.py                   |   5 +-
 test/contrib/test_pyopenssl.py                     |   7 +-
 test/contrib/test_pyopenssl_dependencies.py        |  46 ++
 test/contrib/test_securetransport.py               |  21 +
 test/contrib/test_socks.py                         | 105 ++-
 test/port_helpers.py                               |   6 +-
 test/socketpair_helper.py                          |  62 ++
 test/test_collections.py                           |  27 +-
 test/test_compatibility.py                         |   4 +-
 test/test_connection.py                            |  19 +-
 test/test_connectionpool.py                        |  43 +-
 test/test_exceptions.py                            |   1 -
 test/test_fields.py                                |   2 +-
 test/test_filepost.py                              |  99 ++-
 test/test_no_ssl.py                                |   9 +-
 test/test_poolmanager.py                           | 183 +++--
 test/test_proxymanager.py                          |  10 +-
 test/test_queue_monkeypatch.py                     |  37 +
 test/test_response.py                              |  29 +-
 test/test_retry.py                                 | 103 ++-
 test/test_selectors.py                             | 795 ++++++++++++++++++++
 test/test_util.py                                  | 123 +++-
 test/with_dummyserver/test_chunked_transfer.py     |   9 +-
 test/with_dummyserver/test_connectionpool.py       | 232 ++++--
 test/with_dummyserver/test_https.py                |  71 +-
 test/with_dummyserver/test_no_ssl.py               |   8 +-
 test/with_dummyserver/test_poolmanager.py          |  40 +-
 test/with_dummyserver/test_proxy_poolmanager.py    |  72 +-
 test/with_dummyserver/test_socketlevel.py          | 308 ++++++--
 urllib3/__init__.py                                |   2 +-
 urllib3/_collections.py                            |  18 +-
 urllib3/connection.py                              |   9 +-
 urllib3/connectionpool.py                          |  68 +-
 .../contrib/_securetransport}/__init__.py          |   0
 urllib3/contrib/_securetransport/bindings.py       | 590 +++++++++++++++
 urllib3/contrib/_securetransport/low_level.py      | 343 +++++++++
 urllib3/contrib/appengine.py                       |   2 +-
 urllib3/contrib/pyopenssl.py                       |  41 +-
 urllib3/contrib/securetransport.py                 | 807 +++++++++++++++++++++
 urllib3/contrib/socks.py                           |  10 +
 urllib3/exceptions.py                              |   5 +
 urllib3/poolmanager.py                             | 187 +++--
 urllib3/response.py                                |   6 +-
 urllib3/util/__init__.py                           |   8 +
 urllib3/util/connection.py                         |  31 +-
 urllib3/util/request.py                            |  48 +-
 urllib3/util/retry.py                              |  41 +-
 urllib3/util/selectors.py                          | 581 +++++++++++++++
 urllib3/util/ssl_.py                               |   1 +
 urllib3/util/timeout.py                            |   7 +-
 urllib3/util/url.py                                |   6 +-
 urllib3/util/wait.py                               |  40 +
 75 files changed, 5165 insertions(+), 673 deletions(-)
 create mode 100644 dummyserver/.DS_Store
 copy dummyserver/certs/{client.pem => server.combined.pem} (58%)
 create mode 100644 test/contrib/test_pyopenssl_dependencies.py
 create mode 100644 test/contrib/test_securetransport.py
 create mode 100644 test/socketpair_helper.py
 create mode 100644 test/test_queue_monkeypatch.py
 create mode 100644 test/test_selectors.py
 copy {dummyserver => urllib3/contrib/_securetransport}/__init__.py (100%)
 create mode 100644 urllib3/contrib/_securetransport/bindings.py
 create mode 100644 urllib3/contrib/_securetransport/low_level.py
 create mode 100644 urllib3/contrib/securetransport.py
 create mode 100644 urllib3/util/selectors.py
 create mode 100644 urllib3/util/wait.py

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-urllib3.git



More information about the Python-modules-commits mailing list