[Python-modules-commits] [python-aiohttp] branch master updated (98dc9dc -> 2d2e29e)

Piotr Ożarowski piotr at moszumanska.debian.org
Sat Jul 23 20:29:38 UTC 2016


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

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

      from  98dc9dc   Fixed VCS URL (https)
       new  75ab5d2   record new upstream branch created by importing python-aiohttp_0.22.1.orig.tar.gz
       new  a5b9df4   Import python-aiohttp_0.20.2.orig.tar.gz
       new  a9c6624   Import python-aiohttp_0.22.1.orig.tar.gz
       new  c4ca013   New upstream release
       new  15aa894   Add dependency on python3-multidict
       new  2d2e29e   Standards-Version bumped to 3.9.8 (no changes needed)

The 6 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.txt                                        |   104 +-
 CONTRIBUTORS.txt                                   |    18 +-
 Makefile                                           |    16 +-
 PKG-INFO                                           |   148 +-
 README.rst                                         |    42 +-
 aiohttp.egg-info/PKG-INFO                          |   148 +-
 aiohttp.egg-info/SOURCES.txt                       |    25 +-
 aiohttp.egg-info/pbr.json                          |     1 -
 aiohttp.egg-info/requires.txt                      |     1 +
 aiohttp/__init__.py                                |    30 +-
 aiohttp/_multidict.c                               | 17283 -------------------
 aiohttp/_multidict.pyx                             |   653 -
 aiohttp/_websocket.c                               |   251 +-
 aiohttp/abc.py                                     |    67 +-
 aiohttp/client.py                                  |   118 +-
 aiohttp/client_reqrep.py                           |    55 +-
 aiohttp/connector.py                               |   150 +-
 aiohttp/errors.py                                  |    12 +-
 aiohttp/file_sender.py                             |   136 +
 aiohttp/hdrs.py                                    |     2 +-
 aiohttp/helpers.py                                 |   364 +-
 aiohttp/multidict.py                               |   385 -
 aiohttp/multipart.py                               |   100 +-
 aiohttp/protocol.py                                |    90 +-
 aiohttp/pytest_plugin.py                           |    67 +
 aiohttp/resolver.py                                |    74 +
 aiohttp/server.py                                  |    43 +-
 aiohttp/streams.py                                 |    26 +-
 aiohttp/test_utils.py                              |   346 +-
 aiohttp/web.py                                     |   186 +-
 aiohttp/web_exceptions.py                          |    13 +
 aiohttp/web_reqrep.py                              |   119 +-
 aiohttp/web_urldispatcher.py                       |   715 +-
 aiohttp/web_ws.py                                  |    10 +
 aiohttp/websocket.py                               |    22 +-
 aiohttp/worker.py                                  |    56 +-
 debian/.git-dpm                                    |     8 +-
 debian/changelog                                   |    10 +-
 debian/control                                     |     3 +-
 docs/abc.rst                                       |   126 +
 docs/aiohttp_doctools.py                           |    27 -
 docs/api.rst                                       |    10 +-
 docs/client.rst                                    |   276 +-
 docs/client_reference.rst                          |   235 +-
 docs/conf.py                                       |    18 +-
 docs/faq.rst                                       |    83 +
 docs/glossary.rst                                  |    20 +-
 docs/gunicorn.rst                                  |    10 +-
 docs/index.rst                                     |    49 +-
 docs/logging.rst                                   |    25 +-
 docs/multidict.rst                                 |   375 -
 docs/multipart.rst                                 |     2 +-
 docs/new_router.rst                                |    84 +
 docs/python33.rst                                  |    15 -
 docs/server.rst                                    |    34 +-
 docs/testing.rst                                   |   212 +
 docs/tutorial.rst                                  |   237 +
 docs/web.rst                                       |   330 +-
 docs/web_reference.rst                             |   535 +-
 examples/basic_srv.py                              |     4 +-
 examples/cli_app.py                                |    54 +
 examples/crawl.py                                  |    21 +-
 examples/curl.py                                   |     4 +-
 examples/mpsrv.py                                  |     4 +-
 examples/srv.py                                    |     2 +-
 examples/tcp_protocol_parser.py                    |     2 +-
 examples/wssrv.py                                  |     4 +-
 setup.cfg                                          |     2 +-
 setup.py                                           |     5 +-
 tests/conftest.py                                  |    38 +-
 tests/test_classbasedview.py                       |     4 +
 tests/test_client_functional.py                    |    82 +-
 tests/test_client_functional_oldstyle.py           |   165 +-
 tests/test_client_request.py                       |    33 +-
 tests/test_client_response.py                      |    51 +-
 tests/test_client_session.py                       |    45 +-
 tests/test_connector.py                            |   140 +-
 tests/test_helpers.py                              |   483 +-
 tests/test_http_parser.py                          |   109 +-
 tests/test_multidict.py                            |   857 -
 tests/test_multipart.py                            |   138 +-
 tests/test_protocol.py                             |    31 +-
 tests/test_py35/test_resp.py                       |    43 +
 tests/test_py35/test_streams_35.py                 |     7 +
 tests/test_py35/test_web_websocket_35.py           |     5 +-
 tests/test_pytest_plugin.py                        |    99 +
 tests/test_resolver.py                             |   114 +
 tests/test_run_app.py                              |    61 +
 tests/test_server.py                               |    37 +-
 tests/test_signals.py                              |    16 +-
 tests/test_streams.py                              |    46 +-
 tests/test_test_utils.py                           |   167 +
 tests/test_timeout.py                              |    31 +-
 tests/test_urldispatch.py                          |   374 +-
 tests/test_web_application.py                      |    57 +-
 tests/test_web_cli.py                              |   121 +
 tests/test_web_exceptions.py                       |    14 +-
 tests/test_web_functional.py                       |   205 +-
 tests/test_web_request.py                          |    69 +-
 tests/test_web_response.py                         |    11 +-
 tests/test_web_urldispatcher.py                    |    65 +
 tests/test_web_websocket.py                        |    16 +-
 tests/test_web_websocket_functional.py             |   482 +-
 ...y => test_web_websocket_functional_oldstyle.py} |    24 +-
 tests/test_websendfile.py                          |    71 +
 tests/test_websocket_client.py                     |    38 +-
 tests/test_websocket_client_functional.py          |    53 +-
 tests/test_websocket_handshake.py                  |     2 +-
 tests/test_websocket_writer.py                     |     4 +
 tests/test_worker.py                               |    58 +-
 tests/test_wsgi.py                                 |    28 +-
 111 files changed, 7305 insertions(+), 21891 deletions(-)
 delete mode 100644 aiohttp.egg-info/pbr.json
 delete mode 100644 aiohttp/_multidict.c
 delete mode 100644 aiohttp/_multidict.pyx
 create mode 100644 aiohttp/file_sender.py
 delete mode 100644 aiohttp/multidict.py
 create mode 100644 aiohttp/pytest_plugin.py
 create mode 100644 aiohttp/resolver.py
 create mode 100644 docs/abc.rst
 delete mode 100644 docs/aiohttp_doctools.py
 create mode 100644 docs/faq.rst
 delete mode 100644 docs/multidict.rst
 create mode 100644 docs/new_router.rst
 delete mode 100644 docs/python33.rst
 create mode 100644 docs/testing.rst
 create mode 100644 docs/tutorial.rst
 create mode 100644 examples/cli_app.py
 delete mode 100644 tests/test_multidict.py
 create mode 100644 tests/test_pytest_plugin.py
 create mode 100644 tests/test_resolver.py
 create mode 100644 tests/test_run_app.py
 create mode 100644 tests/test_test_utils.py
 create mode 100644 tests/test_web_cli.py
 create mode 100644 tests/test_web_urldispatcher.py
 copy tests/{test_web_websocket_functional.py => test_web_websocket_functional_oldstyle.py} (95%)
 create mode 100644 tests/test_websendfile.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