[Python-modules-commits] [python-aiohttp] branch master updated (e895613 -> a13e84b)

Piotr Ożarowski piotr at moszumanska.debian.org
Tue Sep 20 22:27:41 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  e895613   do not create -dbgsym package
       new  bed720f   Import python-aiohttp_1.0.1.orig.tar.gz
       new  a696123   record new upstream branch created by importing python-aiohttp_1.0.1.orig.tar.gz and merge it
       new  ee11477   patch no longer needed
       new  34ef141   New upstream release
       new  a13e84b   add python3-async-timeout to Build-Depends

The 5 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                                        |  159 ++
 CHANGES.txt                                        |  125 --
 CONTRIBUTORS.txt                                   |   23 +
 MANIFEST.in                                        |    2 +-
 Makefile                                           |  113 +-
 PKG-INFO                                           |  208 ++-
 README.rst                                         |   44 +-
 aiohttp.egg-info/PKG-INFO                          |  208 ++-
 aiohttp.egg-info/SOURCES.txt                       |   37 +-
 aiohttp.egg-info/requires.txt                      |    3 +-
 aiohttp/__init__.py                                |   15 +-
 aiohttp/{websocket.py => _ws_impl.py}              |  173 +-
 aiohttp/abc.py                                     |   15 +-
 aiohttp/client.py                                  |  127 +-
 aiohttp/client_reqrep.py                           |   95 +-
 aiohttp/{websocket_client.py => client_ws.py}      |   79 +-
 aiohttp/connector.py                               |  264 +--
 aiohttp/cookiejar.py                               |  294 +++
 aiohttp/errors.py                                  |    7 +-
 aiohttp/file_sender.py                             |  106 +-
 aiohttp/hdrs.py                                    |  168 +-
 aiohttp/helpers.py                                 |  364 +---
 aiohttp/log.py                                     |    1 -
 aiohttp/multipart.py                               |   99 +-
 aiohttp/parsers.py                                 |   48 +-
 aiohttp/protocol.py                                |   12 +-
 aiohttp/pytest_plugin.py                           |   64 +-
 aiohttp/resolver.py                                |   32 +-
 aiohttp/server.py                                  |  264 ++-
 aiohttp/streams.py                                 |  127 +-
 aiohttp/test_utils.py                              |  618 +++----
 aiohttp/web.py                                     |  124 +-
 aiohttp/web_exceptions.py                          |    8 +-
 aiohttp/web_reqrep.py                              |  138 +-
 aiohttp/web_urldispatcher.py                       |  145 +-
 aiohttp/web_ws.py                                  |  103 +-
 aiohttp/worker.py                                  |   76 +-
 aiohttp/wsgi.py                                    |    2 +-
 debian/.git-dpm                                    |   14 +-
 debian/changelog                                   |    6 +
 debian/control                                     |    1 +
 debian/patches/series                              |    1 -
 debian/patches/test_connector.patch                |  202 ---
 docs/abc.rst                                       |   54 +-
 docs/api.rst                                       |  191 +-
 docs/changes.rst                                   |    6 +-
 docs/client.rst                                    |  111 +-
 docs/client_reference.rst                          |  284 ++-
 docs/conf.py                                       |    8 +-
 docs/contributing.rst                              |    1 +
 docs/faq.rst                                       |  242 ++-
 docs/glossary.rst                                  |   10 +-
 docs/gunicorn.rst                                  |   19 +-
 docs/index.rst                                     |   67 +-
 docs/logging.rst                                   |   21 +
 docs/multipart.rst                                 |    7 +-
 docs/new_router.rst                                |    4 +
 docs/server.rst                                    |    3 +-
 docs/spelling_wordlist.txt                         |  156 +-
 docs/streams.rst                                   |  157 ++
 docs/testing.rst                                   |  215 ++-
 docs/tutorial.rst                                  |  122 +-
 docs/web.rst                                       |  222 ++-
 docs/web_reference.rst                             |  351 +++-
 examples/background_tasks.py                       |   65 +
 examples/basic_srv.py                              |    8 +-
 examples/cli_app.py                                |    5 +-
 examples/client_auth.py                            |   32 +-
 examples/client_json.py                            |   29 +-
 examples/{wsclient.py => client_ws.py}             |   20 +-
 examples/curl.py                                   |    7 +-
 examples/fake_server.py                            |  167 ++
 examples/{ => legacy}/crawl.py                     |    2 +-
 examples/{ => legacy}/srv.py                       |    9 +-
 examples/{ => legacy}/tcp_protocol_parser.py       |   16 +-
 examples/mpsrv.py                                  |  296 ---
 examples/server.crt                                |   19 +
 examples/server.csr                                |   16 +
 examples/server.key                                |   27 +
 examples/static_files.py                           |    7 +
 examples/web_classview1.py                         |   22 +-
 examples/web_cookies.py                            |   20 +-
 examples/web_rewrite_headers_middleware.py         |    5 +-
 examples/web_srv.py                                |   44 +-
 examples/web_ws.py                                 |   81 +-
 examples/wssrv.py                                  |  318 ----
 setup.cfg                                          |    7 +
 setup.py                                           |   16 +-
 tests/autobahn/client.py                           |    7 +-
 tests/autobahn/server.py                           |    7 +-
 tests/conftest.py                                  |  138 +-
 tests/test_classbasedview.py                       |    9 +-
 tests/test_client_connection.py                    |    8 +-
 tests/test_client_functional.py                    | 1132 +++++++++++-
 tests/test_client_functional_oldstyle.py           | 1107 ++++--------
 tests/test_client_request.py                       |  110 +-
 tests/test_client_response.py                      |   77 +-
 tests/test_client_session.py                       |   45 +-
 ...{test_websocket_client.py => test_client_ws.py} |   18 +-
 ..._functional.py => test_client_ws_functional.py} |  181 +-
 tests/test_connector.py                            | 1404 +++++++-------
 tests/test_cookiejar.py                            |  514 ++++++
 tests/test_errors.py                               |    6 +
 tests/test_flowcontrol_streams.py                  |   13 +-
 tests/test_helpers.py                              |  530 +-----
 tests/test_http_parser.py                          |   31 +-
 tests/test_multipart.py                            |   72 +-
 tests/test_parser_buffer.py                        |   40 +-
 tests/test_protocol.py                             |   35 +-
 tests/test_proxy.py                                |  504 ++++++
 tests/test_proxy_connector.py                      |  422 -----
 tests/test_py35/test_cbv35.py                      |    5 +-
 tests/test_py35/test_client.py                     |    7 +
 tests/test_py35/test_client_websocket_35.py        |    4 -
 tests/test_py35/test_multipart_35.py               |    8 +-
 tests/test_py35/test_resp.py                       |    9 +-
 tests/test_py35/test_streams_35.py                 |   25 +-
 tests/test_py35/test_test_utils_35.py              |   29 +
 tests/test_py35/test_web_websocket_35.py           |   11 +-
 tests/test_pytest_plugin.py                        |   51 +-
 tests/test_resolver.py                             |  225 ++-
 tests/test_run_app.py                              |   52 +-
 tests/test_server.py                               |  201 +-
 tests/test_signals.py                              |   11 +-
 tests/test_stream_parser.py                        |   24 +-
 tests/test_stream_protocol.py                      |    1 +
 tests/test_stream_writer.py                        |   18 +-
 tests/test_streams.py                              |   71 +-
 tests/test_test_utils.py                           |  161 +-
 tests/test_timeout.py                              |  177 --
 tests/test_urldispatch.py                          |  125 +-
 tests/test_web_application.py                      |   86 +-
 tests/test_web_cli.py                              |   57 +-
 tests/test_web_exceptions.py                       |   44 +-
 tests/test_web_functional.py                       | 1912 ++++++++------------
 tests/test_web_middleware.py                       |    8 +-
 tests/test_web_request.py                          |   26 +-
 tests/test_web_request_handler.py                  |   23 +-
 tests/test_web_response.py                         |  162 +-
 tests/test_web_sendfile.py                         |   77 +
 tests/test_web_sendfile_functional.py              |  399 ++++
 tests/test_web_urldispatcher.py                    |  208 ++-
 tests/test_web_websocket.py                        |  888 +++++----
 tests/test_web_websocket_functional.py             |  201 +-
 tests/test_web_websocket_functional_oldstyle.py    |  115 +-
 tests/test_websendfile.py                          |   71 -
 tests/test_websocket_handshake.py                  |   83 +-
 tests/test_websocket_parser.py                     |  239 +--
 tests/test_websocket_writer.py                     |   14 +-
 tests/test_worker.py                               |  278 ++-
 tests/test_wsgi.py                                 |   33 +-
 151 files changed, 11979 insertions(+), 8773 deletions(-)
 create mode 100644 CHANGES.rst
 delete mode 100644 CHANGES.txt
 rename aiohttp/{websocket.py => _ws_impl.py} (78%)
 rename aiohttp/{websocket_client.py => client_ws.py} (73%)
 create mode 100644 aiohttp/cookiejar.py
 delete mode 100644 debian/patches/series
 delete mode 100644 debian/patches/test_connector.patch
 create mode 100644 docs/streams.rst
 create mode 100755 examples/background_tasks.py
 mode change 100644 => 100755 examples/cli_app.py
 mode change 100644 => 100755 examples/client_json.py
 rename examples/{wsclient.py => client_ws.py} (83%)
 create mode 100755 examples/fake_server.py
 rename examples/{ => legacy}/crawl.py (100%)
 rename examples/{ => legacy}/srv.py (99%)
 rename examples/{ => legacy}/tcp_protocol_parser.py (96%)
 delete mode 100755 examples/mpsrv.py
 create mode 100644 examples/server.crt
 create mode 100644 examples/server.csr
 create mode 100644 examples/server.key
 create mode 100644 examples/static_files.py
 mode change 100644 => 100755 examples/web_classview1.py
 delete mode 100755 examples/wssrv.py
 rename tests/{test_websocket_client.py => test_client_ws.py} (96%)
 rename tests/{test_websocket_client_functional.py => test_client_ws_functional.py} (64%)
 create mode 100644 tests/test_cookiejar.py
 create mode 100644 tests/test_proxy.py
 delete mode 100644 tests/test_proxy_connector.py
 create mode 100644 tests/test_py35/test_client.py
 create mode 100644 tests/test_py35/test_test_utils_35.py
 delete mode 100644 tests/test_timeout.py
 create mode 100644 tests/test_web_sendfile.py
 create mode 100644 tests/test_web_sendfile_functional.py
 delete 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