[Python-modules-commits] [python-urllib3] branch master updated (9d3b561 -> 3792da2)

Daniele Tricoli eriol-guest at moszumanska.debian.org
Tue Dec 6 00:15:32 UTC 2016


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  9d3b561   s/UNRELEASED/unstable/
       new  6c0509b   New upstream release
       new  46ef323   record new upstream branch created by importing python-urllib3_1.19.1.orig.tar.gz
       new  0dbe964   Import python-urllib3_1.19.1.orig.tar.gz
       new  f7c3324   Do not use embedded copy of python-six.
       new  2be2c5a   require SSL certificate validation by default by using
       new  d19b1c6   Do not use logging-clear-handlers to see all logging output and
       new  522ffde   Do not use embedded copy of ssl.match_hostname, when possible
       new  9ac36d8   merge patched into master
       new  562c54c   Do not use embedded copy of python-six.
       new  dcd8966   require SSL certificate validation by default by using
       new  8e646fc   Do not use logging-clear-handlers to see all logging output and
       new  37999f5   Do not use embedded copy of ssl.match_hostname, when possible
       new  3792da2   merge patched into master

The 13 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                                        | 100 +++++
 CONTRIBUTORS.txt                                   |  10 +
 Makefile                                           |  20 +-
 PKG-INFO                                           | 250 ++++++------
 README.rst                                         | 170 +++------
 debian/.git-dpm                                    |  14 +-
 debian/changelog                                   |   6 +
 .../01_do-not-use-embedded-python-six.patch        | 204 ++++++++--
 debian/patches/02_require-cert-verification.patch  |   8 +-
 debian/patches/04_relax_nosetests_options.patch    |  14 +-
 .../05_avoid-embedded-ssl-match-hostname.patch     |   2 +-
 docs/Makefile                                      |   2 +-
 docs/README                                        |  14 -
 docs/_templates/fonts.html                         |   1 +
 docs/advanced-usage.rst                            | 265 +++++++++++++
 docs/collections.rst                               |  13 -
 docs/conf.py                                       |  52 ++-
 docs/contrib.rst                                   | 102 -----
 docs/contributing.rst                              |  83 ++++
 docs/doc-requirements.txt                          |  12 -
 docs/exceptions.rst                                |   9 -
 docs/helpers.rst                                   |  57 ---
 docs/index.rst                                     | 424 +++------------------
 docs/managers.rst                                  | 131 -------
 docs/pools.rst                                     |  86 -----
 docs/recipes.rst                                   |  41 --
 docs/reference/index.rst                           |  90 +++++
 docs/reference/urllib3.contrib.rst                 |  37 ++
 docs/reference/urllib3.util.rst                    |  70 ++++
 docs/requirements.txt                              |   4 +
 docs/security.rst                                  | 262 -------------
 docs/user-guide.rst                                | 417 ++++++++++++++++++++
 .../certs/{client.pem => server.ip_san.crt}        |  14 +-
 dummyserver/handlers.py                            |  50 ++-
 dummyserver/proxy.py                               |   1 +
 dummyserver/server.py                              |   8 +
 setup.cfg                                          |  12 +-
 setup.py                                           |  22 +-
 test/contrib/test_gae_manager.py                   |  31 +-
 test/contrib/test_pyopenssl.py                     |  39 +-
 test/test_connectionpool.py                        |  11 +-
 test/test_fields.py                                |   9 +
 test/test_response.py                              | 105 ++++-
 test/test_retry.py                                 |  50 ++-
 test/test_util.py                                  | 100 ++++-
 test/with_dummyserver/test_chunked_transfer.py     |  26 ++
 test/with_dummyserver/test_connectionpool.py       | 107 +++++-
 test/with_dummyserver/test_https.py                | 124 +++---
 test/with_dummyserver/test_proxy_poolmanager.py    |  10 +
 test/with_dummyserver/test_socketlevel.py          | 100 +++++
 urllib3/__init__.py                                |   3 +-
 urllib3/connection.py                              |  88 +++--
 urllib3/connectionpool.py                          |  45 ++-
 urllib3/contrib/appengine.py                       | 109 ++++--
 urllib3/contrib/ntlmpool.py                        |   7 +-
 urllib3/contrib/pyopenssl.py                       | 309 +++++++++------
 urllib3/contrib/socks.py                           |  16 +-
 urllib3/exceptions.py                              |  32 ++
 urllib3/fields.py                                  |   2 +-
 urllib3/filepost.py                                |   2 +-
 urllib3/packages/ssl_match_hostname/__init__.py    |   8 +-
 .../packages/ssl_match_hostname/_implementation.py |  58 ++-
 urllib3/poolmanager.py                             |   8 +-
 urllib3/request.py                                 |   5 +-
 urllib3/response.py                                | 100 ++++-
 urllib3/util/connection.py                         |   1 +
 urllib3/util/response.py                           |   7 +
 urllib3/util/retry.py                              | 110 +++++-
 urllib3/util/ssl_.py                               |  40 +-
 urllib3/util/timeout.py                            |  15 +-
 urllib3/util/url.py                                |  19 +-
 71 files changed, 2984 insertions(+), 1789 deletions(-)
 delete mode 100644 docs/README
 create mode 100644 docs/_templates/fonts.html
 create mode 100644 docs/advanced-usage.rst
 delete mode 100644 docs/collections.rst
 delete mode 100644 docs/contrib.rst
 create mode 100644 docs/contributing.rst
 delete mode 100644 docs/doc-requirements.txt
 delete mode 100644 docs/exceptions.rst
 delete mode 100644 docs/helpers.rst
 delete mode 100644 docs/managers.rst
 delete mode 100644 docs/pools.rst
 delete mode 100644 docs/recipes.rst
 create mode 100644 docs/reference/index.rst
 create mode 100644 docs/reference/urllib3.contrib.rst
 create mode 100644 docs/reference/urllib3.util.rst
 create mode 100644 docs/requirements.txt
 delete mode 100644 docs/security.rst
 create mode 100644 docs/user-guide.rst
 copy dummyserver/certs/{client.pem => server.ip_san.crt} (66%)

-- 
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