[Python-modules-commits] [python-aiohttp] 02/04: record new upstream branch created by importing python-aiohttp_1.1.1.orig.tar.gz and merge it

Piotr Ożarowski piotr at moszumanska.debian.org
Sun Nov 6 21:56:12 UTC 2016


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

piotr pushed a commit to branch master
in repository python-aiohttp.

commit 42be793ba316407103325db397334ba60bf91e34
Merge: a13e84b 0486d44
Author: Piotr Ożarowski <piotr at debian.org>
Date:   Sun Nov 6 15:12:12 2016 +0100

    record new upstream branch created by importing python-aiohttp_1.1.1.orig.tar.gz and merge it

 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 +
 debian/.git-dpm                                 |   14 +-
 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 +-
 97 files changed, 7276 insertions(+), 4892 deletions(-)

diff --cc debian/.git-dpm
index a0cb1f4,0000000..d295203
mode 100644,000000..100644
--- a/debian/.git-dpm
+++ b/debian/.git-dpm
@@@ -1,11 -1,0 +1,11 @@@
 +# see git-dpm(1) from git-dpm package
- bed720fdcc1bf0441302e1ad87a35179b97a20c0
- bed720fdcc1bf0441302e1ad87a35179b97a20c0
- bed720fdcc1bf0441302e1ad87a35179b97a20c0
- bed720fdcc1bf0441302e1ad87a35179b97a20c0
- python-aiohttp_1.0.1.orig.tar.gz
- ff6b4f3ee2588adb9b90bd9572988683962ce7d0
- 498972
++0486d44d14003e2136a27f785a26524a435d7445
++0486d44d14003e2136a27f785a26524a435d7445
++0486d44d14003e2136a27f785a26524a435d7445
++0486d44d14003e2136a27f785a26524a435d7445
++python-aiohttp_1.1.1.orig.tar.gz
++fd82c6db6db51ff18bf56ab24deeeccf20bbb27b
++508565
 +debianTag="debian/%e%v"
 +patchedTag="patched/%e%v"
 +upstreamTag="upstream/%e%u"

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