[Python-modules-commits] [python-aiohttp] branch upstream updated (f3d021a -> 2b81bb2)
Piotr Ożarowski
piotr at moszumanska.debian.org
Thu Jan 28 21:51:37 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.
from f3d021a Imported Upstream version 0.17.4
new 2b81bb2 Import python-aiohttp_0.20.2.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:
CHANGES.txt | 86 +-
CONTRIBUTORS.txt | 28 +-
LICENSE.txt | 2 +-
Makefile | 47 +-
PKG-INFO | 192 +-
README.rst | 136 +-
aiohttp.egg-info/PKG-INFO | 192 +-
aiohttp.egg-info/SOURCES.txt | 40 +-
aiohttp.egg-info/pbr.json | 1 +
aiohttp/__init__.py | 4 +-
aiohttp/_multidict.c | 7994 +++++++++++++-------
aiohttp/_multidict.pyx | 278 +-
aiohttp/_websocket.c | 416 +-
aiohttp/_websocket.pyx | 52 +-
aiohttp/abc.py | 25 +
aiohttp/client.py | 527 +-
aiohttp/client_reqrep.py | 226 +-
aiohttp/connector.py | 139 +-
aiohttp/errors.py | 7 +-
aiohttp/hdrs.py | 4 +
aiohttp/helpers.py | 337 +-
aiohttp/multidict.py | 26 +-
aiohttp/multipart.py | 50 +-
aiohttp/parsers.py | 167 +-
aiohttp/protocol.py | 98 +-
aiohttp/server.py | 95 +-
aiohttp/signals.py | 71 +
aiohttp/streams.py | 188 +-
aiohttp/test_utils.py | 3 -
aiohttp/web.py | 58 +-
aiohttp/web_exceptions.py | 50 +-
aiohttp/web_reqrep.py | 135 +-
aiohttp/web_urldispatcher.py | 196 +-
aiohttp/web_ws.py | 62 +-
aiohttp/websocket.py | 15 +-
aiohttp/websocket_client.py | 62 +-
aiohttp/worker.py | 12 +-
aiohttp/wsgi.py | 60 +-
docs/api.rst | 9 +
docs/client.rst | 493 +-
docs/client_reference.rst | 504 +-
docs/client_websockets.rst | 172 -
docs/conf.py | 9 +-
docs/glossary.rst | 16 +-
docs/gunicorn.rst | 65 +-
docs/index.rst | 64 +-
docs/logging.rst | 93 +
docs/multidict.rst | 51 +-
docs/multipart.rst | 129 +-
docs/python33.rst | 15 +
docs/server.rst | 21 +-
docs/spelling_wordlist.txt | 12 +
docs/web.rst | 642 +-
docs/web_reference.rst | 343 +-
examples/{client_auth.py => client_json.py} | 12 +-
examples/srv.py | 2 -
examples/web_classview1.py | 67 +
examples/web_srv.py | 5 +-
examples/web_ws.py | 2 +-
setup.cfg | 2 +-
setup.py | 35 +-
tests/autobahn/server.py | 2 +-
tests/conftest.py | 287 +
tests/test_classbasedview.py | 57 +
tests/test_client_connection.py | 97 +
tests/test_client_functional.py | 1797 +----
tests/test_client_functional_newstyle.py | 121 -
...ional.py => test_client_functional_oldstyle.py} | 93 +-
tests/test_client_request.py | 814 +-
tests/test_client_response.py | 71 +-
tests/test_client_session.py | 717 +-
tests/test_connector.py | 705 +-
tests/test_errors.py | 15 +-
tests/test_helpers.py | 326 +-
tests/test_http_protocol.py | 503 --
tests/test_http_server.py | 550 --
tests/test_multidict.py | 64 +-
tests/test_multipart.py | 2 +-
tests/test_parser_buffer.py | 286 +
tests/test_parsers.py | 597 --
tests/test_protocol.py | 516 ++
tests/test_proxy_connector.py | 422 ++
tests/test_py35/test_cbv35.py | 19 +
tests/test_py35/test_client_websocket_35.py | 74 +
tests/test_py35/test_multipart_35.py | 68 +
tests/test_py35/test_resp.py | 55 +
tests/test_py35/test_streams_35.py | 72 +
tests/test_py35/test_web_websocket_35.py | 36 +
tests/test_server.py | 547 ++
tests/test_signals.py | 145 +
tests/test_stream_parser.py | 354 +
tests/test_stream_protocol.py | 39 +
tests/test_stream_writer.py | 217 +
tests/test_streams.py | 157 +-
tests/test_timeout.py | 148 +
tests/test_urldispatch.py | 110 +
tests/test_web.py | 145 -
tests/test_web_application.py | 84 +
tests/test_web_exceptions.py | 313 +-
tests/test_web_functional.py | 550 +-
tests/test_web_middleware.py | 169 +-
tests/test_web_request.py | 408 +-
tests/test_web_request_handler.py | 65 +
tests/test_web_response.py | 1476 ++--
tests/test_web_websocket.py | 88 +-
tests/test_web_websocket_functional.py | 64 +-
tests/test_websocket.py | 663 --
tests/test_websocket_client.py | 414 +-
tests/test_websocket_client_functional.py | 285 +
tests/test_websocket_handshake.py | 146 +
tests/test_websocket_parser.py | 496 ++
tests/test_websocket_writer.py | 62 +
tests/test_worker.py | 258 +-
tests/test_wsgi.py | 117 +-
114 files changed, 18372 insertions(+), 12358 deletions(-)
create mode 100644 aiohttp.egg-info/pbr.json
create mode 100644 aiohttp/signals.py
delete mode 100644 docs/client_websockets.rst
create mode 100644 docs/logging.rst
create mode 100644 docs/python33.rst
copy examples/{client_auth.py => client_json.py} (50%)
mode change 100755 => 100644
create mode 100644 examples/web_classview1.py
create mode 100644 tests/conftest.py
create mode 100644 tests/test_classbasedview.py
create mode 100644 tests/test_client_connection.py
delete mode 100644 tests/test_client_functional_newstyle.py
copy tests/{test_client_functional.py => test_client_functional_oldstyle.py} (95%)
delete mode 100644 tests/test_http_protocol.py
delete mode 100644 tests/test_http_server.py
create mode 100644 tests/test_parser_buffer.py
delete mode 100644 tests/test_parsers.py
create mode 100644 tests/test_protocol.py
create mode 100644 tests/test_proxy_connector.py
create mode 100644 tests/test_py35/test_cbv35.py
create mode 100644 tests/test_py35/test_client_websocket_35.py
create mode 100644 tests/test_py35/test_multipart_35.py
create mode 100644 tests/test_py35/test_resp.py
create mode 100644 tests/test_py35/test_streams_35.py
create mode 100644 tests/test_py35/test_web_websocket_35.py
create mode 100644 tests/test_server.py
create mode 100644 tests/test_signals.py
create mode 100644 tests/test_stream_parser.py
create mode 100644 tests/test_stream_protocol.py
create mode 100644 tests/test_stream_writer.py
create mode 100644 tests/test_timeout.py
delete mode 100644 tests/test_web.py
create mode 100644 tests/test_web_application.py
create mode 100644 tests/test_web_request_handler.py
delete mode 100644 tests/test_websocket.py
create mode 100644 tests/test_websocket_client_functional.py
create mode 100644 tests/test_websocket_handshake.py
create mode 100644 tests/test_websocket_parser.py
create mode 100644 tests/test_websocket_writer.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