[Python-modules-commits] [python-aiohttp] branch upstream updated (60d59d3 -> 0486d44)

Piotr Ożarowski piotr at moszumanska.debian.org
Sun Nov 6 22:00:03 UTC 2016


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

piotr pushed a change to branch upstream
in repository python-aiohttp.

  discards  60d59d3   Import python-aiohttp_1.0.1.orig.tar.gz
  discards  12b0e98   Merge branch 'upstream' of git+ssh://git.debian.org/git/python-modules/packages/python-aiohttp into upstream
  discards  53b1695   Import python-aiohttp_0.22.1.orig.tar.gz
      adds  bed720f   Import python-aiohttp_1.0.1.orig.tar.gz
      adds  0486d44   Import python-aiohttp_1.1.1.orig.tar.gz

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (60d59d3)
            \
             N -- N -- N   refs/heads/upstream (0486d44)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omits" are not gone; other references still
refer to them.  Any revisions marked "discards" are gone forever.

No new revisions were added by this update.

Summary of changes:
 CHANGES.rst                                     |  172 +--
 CONTRIBUTORS.txt                                |   28 +-
 Makefile                                        |    3 +-
 PKG-INFO                                        |  191 +--
 README.rst                                      |   13 +-
 aiohttp.egg-info/PKG-INFO                       |  191 +--
 aiohttp.egg-info/SOURCES.txt                    |    5 +-
 aiohttp.egg-info/requires.txt                   |    3 +-
 aiohttp/__init__.py                             |    2 +-
 aiohttp/_websocket.c                            |  196 ++-
 aiohttp/abc.py                                  |   34 +
 aiohttp/client.py                               |   37 +-
 aiohttp/client_reqrep.py                        |  199 +--
 aiohttp/client_ws.py                            |    2 +-
 aiohttp/connector.py                            |   12 +-
 aiohttp/cookiejar.py                            |   71 +-
 aiohttp/errors.py                               |   12 +-
 aiohttp/file_sender.py                          |   33 +-
 aiohttp/helpers.py                              |  257 +++-
 aiohttp/parsers.py                              |    2 +-
 aiohttp/protocol.py                             |   19 +-
 aiohttp/pytest_plugin.py                        |    6 +-
 aiohttp/resolver.py                             |    5 +-
 aiohttp/server.py                               |    6 +-
 aiohttp/signals.py                              |   21 +-
 aiohttp/streams.py                              |  101 +-
 aiohttp/test_utils.py                           |   89 +-
 aiohttp/web.py                                  |  143 +-
 aiohttp/web_exceptions.py                       |    2 +-
 aiohttp/web_reqrep.py                           |  259 ++--
 aiohttp/web_urldispatcher.py                    |  469 +++---
 aiohttp/web_ws.py                               |    4 +-
 aiohttp/worker.py                               |    7 -
 aiohttp/wsgi.py                                 |    1 +
 docs/client.rst                                 |    6 +-
 docs/client_reference.rst                       |  176 ++-
 docs/deployment.rst                             |  312 ++++
 docs/essays.rst                                 |    8 +
 docs/glossary.rst                               |   22 +
 docs/gunicorn.rst                               |  118 --
 docs/index.rst                                  |   30 +-
 docs/logging.rst                                |    2 +-
 docs/new_router.rst                             |    2 +-
 docs/spelling_wordlist.txt                      |   18 +-
 docs/streams.rst                                |    1 +
 docs/testing.rst                                |  114 +-
 docs/tutorial.rst                               |  129 +-
 docs/web.rst                                    |  154 +-
 docs/web_reference.rst                          |  305 ++--
 docs/whats_new_1_1.rst                          |  139 ++
 examples/client_auth.py                         |    6 +-
 examples/curl.py                                |   14 +-
 examples/static_files.py                        |    1 +
 examples/web_classview1.py                      |    2 +-
 examples/web_cookies.py                         |    7 +-
 examples/web_srv.py                             |    7 +-
 examples/web_ws.py                              |    2 +-
 setup.py                                        |    9 +-
 tests/conftest.py                               |  101 --
 tests/test_client_functional.py                 |  559 ++++---
 tests/test_client_request.py                    | 1215 ++++++++-------
 tests/test_client_response.py                   |  587 ++++---
 tests/test_client_session.py                    |   33 +-
 tests/test_client_ws.py                         |  855 ++++++-----
 tests/test_client_ws_functional.py              |   80 +-
 tests/test_connector.py                         |   14 +-
 tests/test_cookiejar.py                         |   53 +-
 tests/test_flowcontrol_streams.py               |   78 +-
 tests/test_helpers.py                           |  158 +-
 tests/test_http_parser.py                       |   11 +-
 tests/test_proxy.py                             |  137 +-
 tests/test_py35/test_client.py                  |   62 +
 tests/test_py35/test_client_websocket_35.py     |   79 +-
 tests/test_py35/test_resp.py                    |   54 +-
 tests/test_py35/test_test_utils_35.py           |   12 +-
 tests/test_py35/test_web_websocket_35.py        |   44 +-
 tests/test_pytest_plugin.py                     |    4 +-
 tests/test_resolver.py                          |    9 +-
 tests/test_run_app.py                           |   16 +
 tests/test_signals.py                           |  135 +-
 tests/test_streams.py                           |   49 +-
 tests/test_urldispatch.py                       | 1872 ++++++++++++-----------
 tests/test_web_application.py                   |   22 +-
 tests/test_web_cli.py                           |    5 +-
 tests/test_web_exceptions.py                    |   13 +-
 tests/test_web_functional.py                    |  353 ++++-
 tests/test_web_middleware.py                    |   15 +-
 tests/test_web_request.py                       |  105 +-
 tests/test_web_request_handler.py               |    6 +-
 tests/test_web_response.py                      |  129 +-
 tests/test_web_sendfile_functional.py           |  250 ++-
 tests/test_web_urldispatcher.py                 |   99 +-
 tests/test_web_websocket_functional.py          |  335 +++-
 tests/test_web_websocket_functional_oldstyle.py |  362 -----
 tests/test_worker.py                            |   57 -
 tests/test_wsgi.py                              |    7 +-
 96 files changed, 7269 insertions(+), 4885 deletions(-)
 create mode 100644 docs/deployment.rst
 create mode 100644 docs/essays.rst
 delete mode 100644 docs/gunicorn.rst
 create mode 100644 docs/whats_new_1_1.rst
 mode change 100644 => 100755 examples/static_files.py
 delete mode 100644 tests/test_web_websocket_functional_oldstyle.py

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



More information about the Python-modules-commits mailing list