[Python-modules-commits] [python-aiohttp] branch upstream updated (b971cd1 -> d3a157b)

Piotr Ożarowski piotr at moszumanska.debian.org
Wed Dec 20 11:37:25 UTC 2017


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

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

      from  b971cd1   Import python-aiohttp_2.2.3.orig.tar.gz
       new  d3a157b   Import python-aiohttp_2.3.6.orig.tar.gz

The 1 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:
 appveyor.yml => .appveyor.yml                      |   15 +-
 ISSUE_TEMPLATE.md => .github/ISSUE_TEMPLATE.md     |    0
 .../PULL_REQUEST_TEMPLATE.md                       |   21 +-
 .gitignore                                         |    4 +-
 .pyup.yml                                          |    2 +
 .travis.yml                                        |  368 +-
 CHANGES.rst                                        |  416 +-
 CHANGES/.gitignore                                 |    1 +
 CONTRIBUTING.rst                                   |   66 +-
 CONTRIBUTORS.txt                                   |   19 +
 HISTORY.rst                                        |  901 +--
 MANIFEST.in                                        |    4 +
 Makefile                                           |   29 +-
 PKG-INFO                                           | 1202 ++--
 README.rst                                         |   86 +-
 aiohttp.egg-info/PKG-INFO                          | 1202 ++--
 aiohttp.egg-info/SOURCES.txt                       |   38 +-
 aiohttp.egg-info/requires.txt                      |    2 +-
 aiohttp/__init__.py                                |    7 +-
 aiohttp/_frozenlist.c                              | 2407 ++++++--
 aiohttp/_frozenlist.pyx                            |    5 +-
 aiohttp/_http_parser.c                             | 6473 +++++++++++++-------
 aiohttp/_http_parser.pyx                           |  113 +-
 aiohttp/_websocket.c                               |  603 +-
 aiohttp/abc.py                                     |   11 +
 aiohttp/client.py                                  |  163 +-
 aiohttp/client_exceptions.py                       |  123 +-
 aiohttp/client_proto.py                            |    6 +-
 aiohttp/client_reqrep.py                           |  111 +-
 aiohttp/client_ws.py                               |   13 +-
 aiohttp/connector.py                               |  301 +-
 aiohttp/cookiejar.py                               |   32 +-
 aiohttp/formdata.py                                |    2 +-
 aiohttp/hdrs.py                                    |    2 +
 aiohttp/helpers.py                                 |  283 +-
 aiohttp/http_exceptions.py                         |    6 +-
 aiohttp/http_parser.py                             |   68 +-
 aiohttp/http_websocket.py                          |  184 +-
 aiohttp/http_writer.py                             |   32 -
 aiohttp/locks.py                                   |   41 +
 aiohttp/payload.py                                 |   37 +-
 aiohttp/pytest_plugin.py                           |  175 +-
 aiohttp/resolver.py                                |   26 +-
 aiohttp/streams.py                                 |   65 +-
 aiohttp/test_utils.py                              |   83 +-
 aiohttp/web.py                                     |   69 +-
 aiohttp/web_fileresponse.py                        |   15 +-
 aiohttp/web_middlewares.py                         |   62 +-
 aiohttp/web_protocol.py                            |   51 +-
 aiohttp/web_request.py                             |  236 +-
 aiohttp/web_response.py                            |   73 +-
 aiohttp/web_server.py                              |    8 +-
 aiohttp/web_urldispatcher.py                       |  266 +-
 aiohttp/web_ws.py                                  |   19 +-
 aiohttp/worker.py                                  |   14 +-
 build-wheels.sh                                    |   23 -
 codecov.yml                                        |    3 +
 demos/polls/aiohttpdemo_polls/utils.py             |    4 +-
 demos/polls/requirements.txt                       |    1 +
 demos/polls/sql/install.sh                         |   21 +-
 docs/abc.rst                                       |   24 +-
 docs/api.rst                                       |   55 +-
 docs/built_with.rst                                |   22 +
 docs/changes.rst                                   |    4 -
 docs/client.rst                                    |  211 +-
 docs/client_reference.rst                          |  593 +-
 docs/conf.py                                       |    7 +-
 docs/contributing.rst                              |    4 -
 docs/deployment.rst                                |   13 +-
 docs/essays.rst                                    |    1 +
 docs/external.rst                                  |   11 +
 docs/faq.rst                                       |   53 +-
 docs/glossary.rst                                  |   27 +-
 docs/index.rst                                     |   77 +-
 docs/logging.rst                                   |   24 +-
 docs/make.bat                                      |    0
 docs/{migration.rst => migration_to_2xx.rst}       |   78 +-
 docs/multipart.rst                                 |    4 -
 docs/new_router.rst                                |    4 -
 docs/powered_by.rst                                |   21 +
 docs/spelling_wordlist.txt                         |   72 +-
 docs/streams.rst                                   |   34 +-
 docs/testing.rst                                   |   55 +-
 docs/third_party.rst                               |  132 +-
 docs/toc.rst                                       |   35 +
 docs/tutorial.rst                                  |    3 -
 docs/web.rst                                       |  511 +-
 docs/web_lowlevel.rst                              |    4 -
 docs/web_reference.rst                             |  423 +-
 examples/background_tasks.py                       |    0
 examples/basic_srv.py                              |    0
 examples/cli_app.py                                |    0
 examples/client_auth.py                            |    0
 examples/client_json.py                            |    0
 examples/client_ws.py                              |    0
 examples/curl.py                                   |    0
 examples/fake_server.py                            |   51 +-
 examples/legacy/crawl.py                           |    0
 examples/legacy/srv.py                             |    0
 examples/legacy/tcp_protocol_parser.py             |    0
 examples/static_files.py                           |    0
 examples/web_classview1.py                         |    0
 examples/web_cookies.py                            |    0
 examples/web_rewrite_headers_middleware.py         |    0
 examples/web_srv.py                                |    0
 examples/{web_srv.py => web_srv_route_deco.py}     |   32 +-
 examples/{web_srv.py => web_srv_route_table.py}    |   31 +-
 examples/web_ws.py                                 |    0
 pyproject.toml                                     |    5 +
 requirements-ci.txt                                |   24 -
 requirements-dev.txt                               |    5 -
 requirements-wheel.txt                             |    3 -
 requirements/ci-wheel.txt                          |   23 +
 requirements/ci.txt                                |    5 +
 requirements/dev.txt                               |    5 +
 requirements/doc-spelling.txt                      |    1 +
 requirements/doc.txt                               |    3 +
 requirements/wheel.txt                             |    3 +
 run_docker.sh                                      |   25 -
 setup.cfg                                          |   72 +-
 setup.py                                           |   12 +-
 tests/autobahn/server.py                           |    2 +-
 tests/conftest.py                                  |    2 +-
 tests/test_client_exceptions.py                    |   10 +
 tests/test_client_functional.py                    |  254 +-
 tests/test_client_request.py                       |   62 +-
 tests/test_client_response.py                      |   13 +-
 tests/test_client_session.py                       |   22 +-
 tests/test_client_ws.py                            |  136 +
 tests/test_client_ws_functional.py                 |   81 +-
 tests/test_connector.py                            |  476 +-
 tests/test_cookiejar.py                            |   33 +-
 tests/test_flowcontrol_streams.py                  |    6 +-
 tests/test_helpers.py                              |  211 +-
 tests/test_http_parser.py                          |  105 +-
 tests/test_locks.py                                |   62 +
 tests/test_loop.py                                 |   36 +
 tests/test_multipart.py                            |    2 +-
 tests/test_payload.py                              |    9 +
 tests/test_proxy.py                                |  427 +-
 tests/test_proxy_functional.py                     |  140 +-
 tests/test_py35/test_client.py                     |   24 +-
 tests/test_py35/test_streams_35.py                 |   21 +
 tests/test_py35/test_test_utils_35.py              |    2 +-
 tests/test_pytest_plugin.py                        |  131 +-
 tests/test_resolver.py                             |   25 +-
 tests/test_route_def.py                            |  286 +
 tests/test_run_app.py                              |   39 +-
 tests/test_streams.py                              |  145 +-
 tests/test_test_utils.py                           |  106 +-
 tests/test_urldispatch.py                          |  127 +
 tests/test_web_application.py                      |   48 +-
 tests/test_web_functional.py                       |   88 +-
 tests/test_web_middleware.py                       |  292 +-
 tests/test_web_request.py                          |  367 +-
 tests/test_web_request_handler.py                  |    8 +-
 tests/test_web_response.py                         |  151 +-
 tests/test_web_sendfile_functional.py              |   54 +
 tests/test_web_server.py                           |   32 +-
 tests/test_web_websocket.py                        |    3 +-
 tests/test_web_websocket_functional.py             |    2 -
 tests/test_websocket_handshake.py                  |  136 +-
 tests/test_websocket_parser.py                     |  128 +-
 tests/test_websocket_writer.py                     |   16 +
 tests/test_worker.py                               |   16 +-
 tools/build-wheels.sh                              |   65 +
 build.cmd => tools/build.cmd                       |    0
 tools/check_changes.py                             |   48 +
 tools/drop_merged_branches.sh                      |    3 +
 tools/run_docker.sh                                |   37 +
 tox.ini                                            |    9 +-
 171 files changed, 17299 insertions(+), 6614 deletions(-)
 rename appveyor.yml => .appveyor.yml (60%)
 rename ISSUE_TEMPLATE.md => .github/ISSUE_TEMPLATE.md (100%)
 rename PULL_REQUEST_TEMPLATE.md => .github/PULL_REQUEST_TEMPLATE.md (50%)
 create mode 100644 CHANGES/.gitignore
 create mode 100644 aiohttp/locks.py
 delete mode 100755 build-wheels.sh
 mode change 100755 => 100644 demos/polls/sql/install.sh
 create mode 100644 docs/built_with.rst
 create mode 100644 docs/external.rst
 mode change 100644 => 100755 docs/make.bat
 rename docs/{migration.rst => migration_to_2xx.rst} (71%)
 create mode 100644 docs/powered_by.rst
 create mode 100644 docs/toc.rst
 mode change 100755 => 100644 examples/background_tasks.py
 mode change 100755 => 100644 examples/basic_srv.py
 mode change 100755 => 100644 examples/cli_app.py
 mode change 100755 => 100644 examples/client_auth.py
 mode change 100755 => 100644 examples/client_json.py
 mode change 100755 => 100644 examples/client_ws.py
 mode change 100755 => 100644 examples/curl.py
 mode change 100755 => 100644 examples/fake_server.py
 mode change 100755 => 100644 examples/legacy/crawl.py
 mode change 100755 => 100644 examples/legacy/srv.py
 mode change 100755 => 100644 examples/legacy/tcp_protocol_parser.py
 mode change 100755 => 100644 examples/static_files.py
 mode change 100755 => 100644 examples/web_classview1.py
 mode change 100755 => 100644 examples/web_cookies.py
 mode change 100755 => 100644 examples/web_rewrite_headers_middleware.py
 mode change 100755 => 100644 examples/web_srv.py
 copy examples/{web_srv.py => web_srv_route_deco.py} (65%)
 mode change 100755 => 100644
 copy examples/{web_srv.py => web_srv_route_table.py} (65%)
 mode change 100755 => 100644
 mode change 100755 => 100644 examples/web_ws.py
 create mode 100644 pyproject.toml
 delete mode 100644 requirements-ci.txt
 delete mode 100644 requirements-dev.txt
 delete mode 100644 requirements-wheel.txt
 create mode 100644 requirements/ci-wheel.txt
 create mode 100644 requirements/ci.txt
 create mode 100644 requirements/dev.txt
 create mode 100644 requirements/doc-spelling.txt
 create mode 100644 requirements/doc.txt
 create mode 100644 requirements/wheel.txt
 delete mode 100755 run_docker.sh
 create mode 100644 tests/test_locks.py
 create mode 100644 tests/test_loop.py
 create mode 100644 tests/test_route_def.py
 create mode 100644 tools/build-wheels.sh
 rename build.cmd => tools/build.cmd (100%)
 mode change 100644 => 100755
 create mode 100644 tools/check_changes.py
 create mode 100644 tools/drop_merged_branches.sh
 create mode 100644 tools/run_docker.sh

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