pkgsrc/www/py-aiohttp/PLIST

183 lines
6.4 KiB
Text
Raw Normal View History

@comment $NetBSD: PLIST,v 1.9 2020/11/19 10:19:50 adam Exp $
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
${PYSITELIB}/${EGG_INFODIR}/requires.txt
${PYSITELIB}/${EGG_INFODIR}/top_level.txt
${PYSITELIB}/aiohttp/.hash/_cparser.pxd.hash
${PYSITELIB}/aiohttp/.hash/_find_header.pxd.hash
${PYSITELIB}/aiohttp/.hash/_frozenlist.pyx.hash
${PYSITELIB}/aiohttp/.hash/_helpers.pyi.hash
${PYSITELIB}/aiohttp/.hash/_helpers.pyx.hash
${PYSITELIB}/aiohttp/.hash/_http_parser.pyx.hash
${PYSITELIB}/aiohttp/.hash/_http_writer.pyx.hash
${PYSITELIB}/aiohttp/.hash/_websocket.pyx.hash
${PYSITELIB}/aiohttp/.hash/frozenlist.pyi.hash
${PYSITELIB}/aiohttp/.hash/hdrs.py.hash
${PYSITELIB}/aiohttp/.hash/signals.pyi.hash
${PYSITELIB}/aiohttp/__init__.py
${PYSITELIB}/aiohttp/__init__.pyc
${PYSITELIB}/aiohttp/__init__.pyo
${PYSITELIB}/aiohttp/_cparser.pxd
py-aiohttp: updated to 3.4.0 3.4.0: Features Add type hints Add raise_for_status request parameter Add type hints to HTTP client Minor server optimizations Preserve the cause when HTTPException is raised from another exception. Add close_boundary option in MultipartWriter.write method. Support streaming Added a remove_slash option to the normalize_path_middleware factory. The class AbstractRouteDef is importable from aiohttp.web. Bugfixes Prevent double closing when client connection is released before the last data_received() callback. Make redirect with normalize_path_middleware work when using url encoded paths. Postpone web task creation to connection establishment. Fix sock_read timeout. When using a server-request body as the data= argument of a client request, iterate over the content with readany instead of readline to avoid Line too long errors. fix UrlDispatcher has no attribute add_options, add web.options correct filename in content-disposition with multipart body Many HTTP proxies has buggy keepalive support. Let's not reuse connection but close it after processing every response. raise 413 "Payload Too Large" rather than raising ValueError in request.post() Add helpful debug message to 413 responses Fix StreamResponse equality, now that they are MutableMapping objects. Fix server request objects comparison Do not hang on 206 Partial Content response with Content-Encoding: gzip Fix timeout precondition checkers Improved Documentation Add a new FAQ entry that clarifies that you should not reuse response objects in middleware functions. Add FAQ section "Why is creating a ClientSession outside of an event loop dangerous?" Fix link to Rambler Fix TCPSite documentation on the Server Reference page. Fix documentation build configuration file for Windows. Remove no longer existing lingering_timeout parameter of Application.make_handler from documentation. Mention that app.make_handler is deprecated, recommend to use runners API instead. Deprecations and Removals Drop loop.current_task() from helpers.current_task() Drop reader parameter from request.multipart().
2018-08-27 13:16:01 +02:00
${PYSITELIB}/aiohttp/_find_header.c
${PYSITELIB}/aiohttp/_find_header.h
${PYSITELIB}/aiohttp/_find_header.pxd
${PYSITELIB}/aiohttp/_frozenlist.c
${PYSITELIB}/aiohttp/_frozenlist.pyx
${PYSITELIB}/aiohttp/_frozenlist.so
py-aiohttp: updated to 3.4.0 3.4.0: Features Add type hints Add raise_for_status request parameter Add type hints to HTTP client Minor server optimizations Preserve the cause when HTTPException is raised from another exception. Add close_boundary option in MultipartWriter.write method. Support streaming Added a remove_slash option to the normalize_path_middleware factory. The class AbstractRouteDef is importable from aiohttp.web. Bugfixes Prevent double closing when client connection is released before the last data_received() callback. Make redirect with normalize_path_middleware work when using url encoded paths. Postpone web task creation to connection establishment. Fix sock_read timeout. When using a server-request body as the data= argument of a client request, iterate over the content with readany instead of readline to avoid Line too long errors. fix UrlDispatcher has no attribute add_options, add web.options correct filename in content-disposition with multipart body Many HTTP proxies has buggy keepalive support. Let's not reuse connection but close it after processing every response. raise 413 "Payload Too Large" rather than raising ValueError in request.post() Add helpful debug message to 413 responses Fix StreamResponse equality, now that they are MutableMapping objects. Fix server request objects comparison Do not hang on 206 Partial Content response with Content-Encoding: gzip Fix timeout precondition checkers Improved Documentation Add a new FAQ entry that clarifies that you should not reuse response objects in middleware functions. Add FAQ section "Why is creating a ClientSession outside of an event loop dangerous?" Fix link to Rambler Fix TCPSite documentation on the Server Reference page. Fix documentation build configuration file for Windows. Remove no longer existing lingering_timeout parameter of Application.make_handler from documentation. Mention that app.make_handler is deprecated, recommend to use runners API instead. Deprecations and Removals Drop loop.current_task() from helpers.current_task() Drop reader parameter from request.multipart().
2018-08-27 13:16:01 +02:00
${PYSITELIB}/aiohttp/_headers.pxi
py-aiohttp: updated to 3.3.2 3.3.2: - Many HTTP proxies has buggy keepalive support. Let's not reuse connection but close it after processing every response. - Provide vendor source files in tarball 3.3.1: - Fix sock_read timeout. - When using a server-request body as the data= argument of a client request, iterate over the content with readany instead of readline to avoid Line too long errors. 3.3.0: Features - Raise ConnectionResetError instead of CancelledError on trying to write to a closed stream. - Implement ClientTimeout class and support socket read timeout. - Enable logging when aiohttp.web is used as a program - Add canonical property to resources - Forbid reading response BODY after release - Implement base protocol class to avoid a dependency from internal asyncio.streams.FlowControlMixin - Cythonize @helpers.reify, 5% boost on macro benchmark - Optimize HTTP parser - Implement runner.addresses property. - Use bytearray instead of a list of bytes in websocket reader. It improves websocket message reading a little. - Remove heartbeat on closing connection on keepalive timeout. The used hack violates HTTP protocol. - Limit websocket message size on reading to 4 MB by default. Bugfixes - Don't reuse a connection with the same URL but different proxy/TLS settings - When parsing the Forwarded header, the optional port number is now preserved. Improved Documentation - Make Change Log more visible in docs - Make style and grammar improvements on the FAQ page. - Document that signal handlers should be async functions since aiohttp 3.0 Deprecations and Removals - Deprecate custom application's router.
2018-06-12 17:28:53 +02:00
${PYSITELIB}/aiohttp/_helpers.c
py-aiohttp: updated to 3.4.0 3.4.0: Features Add type hints Add raise_for_status request parameter Add type hints to HTTP client Minor server optimizations Preserve the cause when HTTPException is raised from another exception. Add close_boundary option in MultipartWriter.write method. Support streaming Added a remove_slash option to the normalize_path_middleware factory. The class AbstractRouteDef is importable from aiohttp.web. Bugfixes Prevent double closing when client connection is released before the last data_received() callback. Make redirect with normalize_path_middleware work when using url encoded paths. Postpone web task creation to connection establishment. Fix sock_read timeout. When using a server-request body as the data= argument of a client request, iterate over the content with readany instead of readline to avoid Line too long errors. fix UrlDispatcher has no attribute add_options, add web.options correct filename in content-disposition with multipart body Many HTTP proxies has buggy keepalive support. Let's not reuse connection but close it after processing every response. raise 413 "Payload Too Large" rather than raising ValueError in request.post() Add helpful debug message to 413 responses Fix StreamResponse equality, now that they are MutableMapping objects. Fix server request objects comparison Do not hang on 206 Partial Content response with Content-Encoding: gzip Fix timeout precondition checkers Improved Documentation Add a new FAQ entry that clarifies that you should not reuse response objects in middleware functions. Add FAQ section "Why is creating a ClientSession outside of an event loop dangerous?" Fix link to Rambler Fix TCPSite documentation on the Server Reference page. Fix documentation build configuration file for Windows. Remove no longer existing lingering_timeout parameter of Application.make_handler from documentation. Mention that app.make_handler is deprecated, recommend to use runners API instead. Deprecations and Removals Drop loop.current_task() from helpers.current_task() Drop reader parameter from request.multipart().
2018-08-27 13:16:01 +02:00
${PYSITELIB}/aiohttp/_helpers.pyi
py-aiohttp: updated to 3.3.2 3.3.2: - Many HTTP proxies has buggy keepalive support. Let's not reuse connection but close it after processing every response. - Provide vendor source files in tarball 3.3.1: - Fix sock_read timeout. - When using a server-request body as the data= argument of a client request, iterate over the content with readany instead of readline to avoid Line too long errors. 3.3.0: Features - Raise ConnectionResetError instead of CancelledError on trying to write to a closed stream. - Implement ClientTimeout class and support socket read timeout. - Enable logging when aiohttp.web is used as a program - Add canonical property to resources - Forbid reading response BODY after release - Implement base protocol class to avoid a dependency from internal asyncio.streams.FlowControlMixin - Cythonize @helpers.reify, 5% boost on macro benchmark - Optimize HTTP parser - Implement runner.addresses property. - Use bytearray instead of a list of bytes in websocket reader. It improves websocket message reading a little. - Remove heartbeat on closing connection on keepalive timeout. The used hack violates HTTP protocol. - Limit websocket message size on reading to 4 MB by default. Bugfixes - Don't reuse a connection with the same URL but different proxy/TLS settings - When parsing the Forwarded header, the optional port number is now preserved. Improved Documentation - Make Change Log more visible in docs - Make style and grammar improvements on the FAQ page. - Document that signal handlers should be async functions since aiohttp 3.0 Deprecations and Removals - Deprecate custom application's router.
2018-06-12 17:28:53 +02:00
${PYSITELIB}/aiohttp/_helpers.pyx
${PYSITELIB}/aiohttp/_helpers.so
${PYSITELIB}/aiohttp/_http_parser.c
${PYSITELIB}/aiohttp/_http_parser.pyx
${PYSITELIB}/aiohttp/_http_parser.so
${PYSITELIB}/aiohttp/_http_writer.c
${PYSITELIB}/aiohttp/_http_writer.pyx
${PYSITELIB}/aiohttp/_http_writer.so
${PYSITELIB}/aiohttp/_websocket.c
${PYSITELIB}/aiohttp/_websocket.pyx
${PYSITELIB}/aiohttp/_websocket.so
${PYSITELIB}/aiohttp/abc.py
${PYSITELIB}/aiohttp/abc.pyc
${PYSITELIB}/aiohttp/abc.pyo
py-aiohttp: updated to 3.3.2 3.3.2: - Many HTTP proxies has buggy keepalive support. Let's not reuse connection but close it after processing every response. - Provide vendor source files in tarball 3.3.1: - Fix sock_read timeout. - When using a server-request body as the data= argument of a client request, iterate over the content with readany instead of readline to avoid Line too long errors. 3.3.0: Features - Raise ConnectionResetError instead of CancelledError on trying to write to a closed stream. - Implement ClientTimeout class and support socket read timeout. - Enable logging when aiohttp.web is used as a program - Add canonical property to resources - Forbid reading response BODY after release - Implement base protocol class to avoid a dependency from internal asyncio.streams.FlowControlMixin - Cythonize @helpers.reify, 5% boost on macro benchmark - Optimize HTTP parser - Implement runner.addresses property. - Use bytearray instead of a list of bytes in websocket reader. It improves websocket message reading a little. - Remove heartbeat on closing connection on keepalive timeout. The used hack violates HTTP protocol. - Limit websocket message size on reading to 4 MB by default. Bugfixes - Don't reuse a connection with the same URL but different proxy/TLS settings - When parsing the Forwarded header, the optional port number is now preserved. Improved Documentation - Make Change Log more visible in docs - Make style and grammar improvements on the FAQ page. - Document that signal handlers should be async functions since aiohttp 3.0 Deprecations and Removals - Deprecate custom application's router.
2018-06-12 17:28:53 +02:00
${PYSITELIB}/aiohttp/base_protocol.py
${PYSITELIB}/aiohttp/base_protocol.pyc
${PYSITELIB}/aiohttp/base_protocol.pyo
${PYSITELIB}/aiohttp/client.py
${PYSITELIB}/aiohttp/client.pyc
${PYSITELIB}/aiohttp/client.pyo
${PYSITELIB}/aiohttp/client_exceptions.py
${PYSITELIB}/aiohttp/client_exceptions.pyc
${PYSITELIB}/aiohttp/client_exceptions.pyo
${PYSITELIB}/aiohttp/client_proto.py
${PYSITELIB}/aiohttp/client_proto.pyc
${PYSITELIB}/aiohttp/client_proto.pyo
${PYSITELIB}/aiohttp/client_reqrep.py
${PYSITELIB}/aiohttp/client_reqrep.pyc
${PYSITELIB}/aiohttp/client_reqrep.pyo
${PYSITELIB}/aiohttp/client_ws.py
${PYSITELIB}/aiohttp/client_ws.pyc
${PYSITELIB}/aiohttp/client_ws.pyo
${PYSITELIB}/aiohttp/connector.py
${PYSITELIB}/aiohttp/connector.pyc
${PYSITELIB}/aiohttp/connector.pyo
${PYSITELIB}/aiohttp/cookiejar.py
${PYSITELIB}/aiohttp/cookiejar.pyc
${PYSITELIB}/aiohttp/cookiejar.pyo
${PYSITELIB}/aiohttp/formdata.py
${PYSITELIB}/aiohttp/formdata.pyc
${PYSITELIB}/aiohttp/formdata.pyo
${PYSITELIB}/aiohttp/frozenlist.py
${PYSITELIB}/aiohttp/frozenlist.pyc
py-aiohttp: updated to 3.4.0 3.4.0: Features Add type hints Add raise_for_status request parameter Add type hints to HTTP client Minor server optimizations Preserve the cause when HTTPException is raised from another exception. Add close_boundary option in MultipartWriter.write method. Support streaming Added a remove_slash option to the normalize_path_middleware factory. The class AbstractRouteDef is importable from aiohttp.web. Bugfixes Prevent double closing when client connection is released before the last data_received() callback. Make redirect with normalize_path_middleware work when using url encoded paths. Postpone web task creation to connection establishment. Fix sock_read timeout. When using a server-request body as the data= argument of a client request, iterate over the content with readany instead of readline to avoid Line too long errors. fix UrlDispatcher has no attribute add_options, add web.options correct filename in content-disposition with multipart body Many HTTP proxies has buggy keepalive support. Let's not reuse connection but close it after processing every response. raise 413 "Payload Too Large" rather than raising ValueError in request.post() Add helpful debug message to 413 responses Fix StreamResponse equality, now that they are MutableMapping objects. Fix server request objects comparison Do not hang on 206 Partial Content response with Content-Encoding: gzip Fix timeout precondition checkers Improved Documentation Add a new FAQ entry that clarifies that you should not reuse response objects in middleware functions. Add FAQ section "Why is creating a ClientSession outside of an event loop dangerous?" Fix link to Rambler Fix TCPSite documentation on the Server Reference page. Fix documentation build configuration file for Windows. Remove no longer existing lingering_timeout parameter of Application.make_handler from documentation. Mention that app.make_handler is deprecated, recommend to use runners API instead. Deprecations and Removals Drop loop.current_task() from helpers.current_task() Drop reader parameter from request.multipart().
2018-08-27 13:16:01 +02:00
${PYSITELIB}/aiohttp/frozenlist.pyi
${PYSITELIB}/aiohttp/frozenlist.pyo
${PYSITELIB}/aiohttp/hdrs.py
${PYSITELIB}/aiohttp/hdrs.pyc
${PYSITELIB}/aiohttp/hdrs.pyo
${PYSITELIB}/aiohttp/helpers.py
${PYSITELIB}/aiohttp/helpers.pyc
${PYSITELIB}/aiohttp/helpers.pyo
${PYSITELIB}/aiohttp/http.py
${PYSITELIB}/aiohttp/http.pyc
${PYSITELIB}/aiohttp/http.pyo
${PYSITELIB}/aiohttp/http_exceptions.py
${PYSITELIB}/aiohttp/http_exceptions.pyc
${PYSITELIB}/aiohttp/http_exceptions.pyo
${PYSITELIB}/aiohttp/http_parser.py
${PYSITELIB}/aiohttp/http_parser.pyc
${PYSITELIB}/aiohttp/http_parser.pyo
${PYSITELIB}/aiohttp/http_websocket.py
${PYSITELIB}/aiohttp/http_websocket.pyc
${PYSITELIB}/aiohttp/http_websocket.pyo
${PYSITELIB}/aiohttp/http_writer.py
${PYSITELIB}/aiohttp/http_writer.pyc
${PYSITELIB}/aiohttp/http_writer.pyo
py-aiohttp: update to 2.3.0 2.3.0: Features -------- Add SSL related params to ClientSession.request Make enable_compression work on HTTP/1.0 Deprecate registering synchronous web handlers Switch to multidict 3.0. All HTTP headers preserve casing now but compared in case-insensitive way. Improvement for normalize_path_middleware. Added possibility to handle URLs with query string. Use towncrier for CHANGES.txt build Implement trust_env=True param in ClientSession. Added variable to customize proxy headers Implement router.add_routes and router decorators. Deprecated BaseRequest.has_body in favor of BaseRequest.can_read_body Added BaseRequest.body_exists attribute that stays static for the lifetime of the request Provide BaseRequest.loop attribute Make _CoroGuard awaitable and fix ClientSession.close warning message Responses to redirects without Location header are returned instead of raising a RuntimeError Added get_client, get_server, setUpAsync and tearDownAsync methods to AioHTTPTestCase Add automatically a SafeChildWatcher to the test loop add ability to disable automatic response decompression Add support for throttling DNS request, avoiding the requests saturation when there is a miss in the DNS cache and many requests getting into the connector at the same time. Use request for getting access log information instead of message/transport pair. Add RequestBase.remote property for accessing to IP of client initiated HTTP request. json() raises a ContentTypeError exception if the content-type does not meet the requirements instead of raising a generic ClientResponseError. Make the HTTP client able to return HTTP chunks when chunked transfer encoding is used. add append_version arg into StaticResource.url and StaticResource.url_for methods for getting an url with hash (version) of the file. Fix parsing the Forwarded header. * commas and semicolons are allowed inside quoted-strings; * empty forwarded-pairs (as in for=_1;;by=_2) are allowed; * non-standard parameters are allowed (although this alone could be easily done in the previous parser). Don’t require ssl module to run. aiohttp does not require SSL to function. The code paths involved with SSL will only be hit upon SSL usage. Raise RuntimeError if HTTPS protocol is required but ssl module is not present. Accept coroutine fixtures in pytest plugin Call shutdown_asyncgens before event loop closing on Python 3.6. Speed up Signals when there are no receivers Raise InvalidURL instead of ValueError on fetches with invalid URL. Move DummyCookieJar into cookiejar.py run_app: Make print=None disable printing Support brotli encoding (generic-purpose lossless compression algorithm) Add server support for WebSockets Per-Message Deflate. Add client option to add deflate compress header in WebSockets request header. If calling ClientSession.ws_connect() with compress=15 the client will support deflate compress negotiation. Support verify_ssl, fingerprint, ssl_context and proxy_headers by client.ws_connect. Added aiohttp.ClientConnectorSSLError when connection fails due ssl.SSLError aiohttp.web.Application.make_handler support access_log_class Build HTTP parser extension in non-strict mode by default. Bugfixes -------- Clear auth information on redirecting to other domain Fix missing app.loop on startup hooks during tests Fix issue with synchronous session closing when using ClientSession as an asynchronous context manager. Fix issue with CookieJar incorrectly expiring cookies in some edge cases. Force use of IPv4 during test, this will make tests run in a Docker container Warnings about unawaited coroutines now correctly point to the user’s code. Fix issue with IndexError being raised by the StreamReader.iter_chunks() generator. Support HTTP 308 Permanent redirect in client class. Fix FileResponse sending empty chunked body on 304. Do not add Content-Length: 0 to GET/HEAD/TRACE/OPTIONS requests by default. Fix parsing the Forwarded header according to RFC 7239. Securely determining remote/scheme/host Fix header name parsing, if name is split into multiple lines Handle session close during connection, KeyError: <aiohttp.connector._TransportPlaceholder> Fixes uncaught TypeError in helpers.guess_filename if name is not a string Raise OSError on async DNS lookup if resolved domain is an alias for another one, which does not have an A or CNAME record. Fix incorrect warning in StreamReader. Properly clone state of web request Fix C HTTP parser for cases when status line is split into different TCP packets. Fix web.FileResponse overriding user supplied Content-Type
2017-10-19 08:54:18 +02:00
${PYSITELIB}/aiohttp/locks.py
${PYSITELIB}/aiohttp/locks.pyc
${PYSITELIB}/aiohttp/locks.pyo
${PYSITELIB}/aiohttp/log.py
${PYSITELIB}/aiohttp/log.pyc
${PYSITELIB}/aiohttp/log.pyo
${PYSITELIB}/aiohttp/multipart.py
${PYSITELIB}/aiohttp/multipart.pyc
${PYSITELIB}/aiohttp/multipart.pyo
${PYSITELIB}/aiohttp/payload.py
${PYSITELIB}/aiohttp/payload.pyc
${PYSITELIB}/aiohttp/payload.pyo
${PYSITELIB}/aiohttp/payload_streamer.py
${PYSITELIB}/aiohttp/payload_streamer.pyc
${PYSITELIB}/aiohttp/payload_streamer.pyo
py-aiohttp: updated to 3.4.0 3.4.0: Features Add type hints Add raise_for_status request parameter Add type hints to HTTP client Minor server optimizations Preserve the cause when HTTPException is raised from another exception. Add close_boundary option in MultipartWriter.write method. Support streaming Added a remove_slash option to the normalize_path_middleware factory. The class AbstractRouteDef is importable from aiohttp.web. Bugfixes Prevent double closing when client connection is released before the last data_received() callback. Make redirect with normalize_path_middleware work when using url encoded paths. Postpone web task creation to connection establishment. Fix sock_read timeout. When using a server-request body as the data= argument of a client request, iterate over the content with readany instead of readline to avoid Line too long errors. fix UrlDispatcher has no attribute add_options, add web.options correct filename in content-disposition with multipart body Many HTTP proxies has buggy keepalive support. Let's not reuse connection but close it after processing every response. raise 413 "Payload Too Large" rather than raising ValueError in request.post() Add helpful debug message to 413 responses Fix StreamResponse equality, now that they are MutableMapping objects. Fix server request objects comparison Do not hang on 206 Partial Content response with Content-Encoding: gzip Fix timeout precondition checkers Improved Documentation Add a new FAQ entry that clarifies that you should not reuse response objects in middleware functions. Add FAQ section "Why is creating a ClientSession outside of an event loop dangerous?" Fix link to Rambler Fix TCPSite documentation on the Server Reference page. Fix documentation build configuration file for Windows. Remove no longer existing lingering_timeout parameter of Application.make_handler from documentation. Mention that app.make_handler is deprecated, recommend to use runners API instead. Deprecations and Removals Drop loop.current_task() from helpers.current_task() Drop reader parameter from request.multipart().
2018-08-27 13:16:01 +02:00
${PYSITELIB}/aiohttp/py.typed
${PYSITELIB}/aiohttp/pytest_plugin.py
${PYSITELIB}/aiohttp/pytest_plugin.pyc
${PYSITELIB}/aiohttp/pytest_plugin.pyo
${PYSITELIB}/aiohttp/resolver.py
${PYSITELIB}/aiohttp/resolver.pyc
${PYSITELIB}/aiohttp/resolver.pyo
${PYSITELIB}/aiohttp/signals.py
${PYSITELIB}/aiohttp/signals.pyc
py-aiohttp: updated to 3.4.0 3.4.0: Features Add type hints Add raise_for_status request parameter Add type hints to HTTP client Minor server optimizations Preserve the cause when HTTPException is raised from another exception. Add close_boundary option in MultipartWriter.write method. Support streaming Added a remove_slash option to the normalize_path_middleware factory. The class AbstractRouteDef is importable from aiohttp.web. Bugfixes Prevent double closing when client connection is released before the last data_received() callback. Make redirect with normalize_path_middleware work when using url encoded paths. Postpone web task creation to connection establishment. Fix sock_read timeout. When using a server-request body as the data= argument of a client request, iterate over the content with readany instead of readline to avoid Line too long errors. fix UrlDispatcher has no attribute add_options, add web.options correct filename in content-disposition with multipart body Many HTTP proxies has buggy keepalive support. Let's not reuse connection but close it after processing every response. raise 413 "Payload Too Large" rather than raising ValueError in request.post() Add helpful debug message to 413 responses Fix StreamResponse equality, now that they are MutableMapping objects. Fix server request objects comparison Do not hang on 206 Partial Content response with Content-Encoding: gzip Fix timeout precondition checkers Improved Documentation Add a new FAQ entry that clarifies that you should not reuse response objects in middleware functions. Add FAQ section "Why is creating a ClientSession outside of an event loop dangerous?" Fix link to Rambler Fix TCPSite documentation on the Server Reference page. Fix documentation build configuration file for Windows. Remove no longer existing lingering_timeout parameter of Application.make_handler from documentation. Mention that app.make_handler is deprecated, recommend to use runners API instead. Deprecations and Removals Drop loop.current_task() from helpers.current_task() Drop reader parameter from request.multipart().
2018-08-27 13:16:01 +02:00
${PYSITELIB}/aiohttp/signals.pyi
${PYSITELIB}/aiohttp/signals.pyo
${PYSITELIB}/aiohttp/streams.py
${PYSITELIB}/aiohttp/streams.pyc
${PYSITELIB}/aiohttp/streams.pyo
${PYSITELIB}/aiohttp/tcp_helpers.py
${PYSITELIB}/aiohttp/tcp_helpers.pyc
${PYSITELIB}/aiohttp/tcp_helpers.pyo
${PYSITELIB}/aiohttp/test_utils.py
${PYSITELIB}/aiohttp/test_utils.pyc
${PYSITELIB}/aiohttp/test_utils.pyo
${PYSITELIB}/aiohttp/tracing.py
${PYSITELIB}/aiohttp/tracing.pyc
${PYSITELIB}/aiohttp/tracing.pyo
py-aiohttp: updated to 3.4.0 3.4.0: Features Add type hints Add raise_for_status request parameter Add type hints to HTTP client Minor server optimizations Preserve the cause when HTTPException is raised from another exception. Add close_boundary option in MultipartWriter.write method. Support streaming Added a remove_slash option to the normalize_path_middleware factory. The class AbstractRouteDef is importable from aiohttp.web. Bugfixes Prevent double closing when client connection is released before the last data_received() callback. Make redirect with normalize_path_middleware work when using url encoded paths. Postpone web task creation to connection establishment. Fix sock_read timeout. When using a server-request body as the data= argument of a client request, iterate over the content with readany instead of readline to avoid Line too long errors. fix UrlDispatcher has no attribute add_options, add web.options correct filename in content-disposition with multipart body Many HTTP proxies has buggy keepalive support. Let's not reuse connection but close it after processing every response. raise 413 "Payload Too Large" rather than raising ValueError in request.post() Add helpful debug message to 413 responses Fix StreamResponse equality, now that they are MutableMapping objects. Fix server request objects comparison Do not hang on 206 Partial Content response with Content-Encoding: gzip Fix timeout precondition checkers Improved Documentation Add a new FAQ entry that clarifies that you should not reuse response objects in middleware functions. Add FAQ section "Why is creating a ClientSession outside of an event loop dangerous?" Fix link to Rambler Fix TCPSite documentation on the Server Reference page. Fix documentation build configuration file for Windows. Remove no longer existing lingering_timeout parameter of Application.make_handler from documentation. Mention that app.make_handler is deprecated, recommend to use runners API instead. Deprecations and Removals Drop loop.current_task() from helpers.current_task() Drop reader parameter from request.multipart().
2018-08-27 13:16:01 +02:00
${PYSITELIB}/aiohttp/typedefs.py
${PYSITELIB}/aiohttp/typedefs.pyc
${PYSITELIB}/aiohttp/typedefs.pyo
${PYSITELIB}/aiohttp/web.py
${PYSITELIB}/aiohttp/web.pyc
${PYSITELIB}/aiohttp/web.pyo
${PYSITELIB}/aiohttp/web_app.py
${PYSITELIB}/aiohttp/web_app.pyc
${PYSITELIB}/aiohttp/web_app.pyo
${PYSITELIB}/aiohttp/web_exceptions.py
${PYSITELIB}/aiohttp/web_exceptions.pyc
${PYSITELIB}/aiohttp/web_exceptions.pyo
${PYSITELIB}/aiohttp/web_fileresponse.py
${PYSITELIB}/aiohttp/web_fileresponse.pyc
${PYSITELIB}/aiohttp/web_fileresponse.pyo
py-aiohttp: updated to 3.5.0 3.5.0 (2018-12-22) Features The library type annotations are checked in strict mode now. Add support for setting cookies for individual request Application.add_domain implementation The default app in the request returned by test_utils.make_mocked_request can now have objects assigned to it and retrieved using the [] operator. Make request.url accessible when transport is closed. Add zlib_executor_size argument to Response constructor to allow compression to run in a background executor to avoid blocking the main thread and potentially triggering health check failures. Enable users to set ClientTimeout in aiohttp.request Don’t raise a warning if NETRC environment variable is not set and ~/.netrc file doesn’t exist. Add default logging handler to web.run_app If the Application.debug flag is set and the default logger aiohttp.access is used, access logs will now be output using a stderr StreamHandler if no handlers are attached. Furthermore, if the default logger has no log level set, the log level will be set to DEBUG. Add method argument to session.ws_connect(). Sometimes server API requires a different HTTP method for WebSocket connection establishment. For example, Docker exec needs POST. Create a task per request handling. Bugfixes Enable passing access_log_class via handler_args Return empty bytes with end-of-chunk marker in empty stream reader. Accept CIMultiDictProxy instances for headers argument in web.Response constructor. Don’t uppercase HTTP method in parser Make method match regexp RFC-7230 compliant Add app.pre_frozen state to properly handle startup signals in sub-applications. Enhanced parsing and validation of helpers.BasicAuth.decode. Change imports from collections module in preparation for 3.8. Ensure Host header is added first to ClientRequest to better replicate browser Fix forward compatibility with Python 3.8: importing ABCs directly from the collections module will not be supported anymore. Keep the query string by normalize_path_middleware. Fix missing parameter raise_for_status for aiohttp.request() Bracket IPv6 addresses in the HOST header Fix default message for server ping and pong frames. Fix tests/test_connector.py typo and tests/autobahn/server.py duplicate loop def. Fix false-negative indicator end_of_HTTP_chunk in StreamReader.readchunk function Release HTTP response before raising status exception Fix task cancellation when sendfile() syscall is used by static file handling. Fix stack trace for asyncio.TimeoutError which was not logged, when it is caught in the handler. Improved Documentation Improve documentation of Application.make_handler parameters. Fix BaseRequest.raw_headers doc. Fix typo in TypeError exception reason in web.Application._handle Make server access log format placeholder %b documentation reflect behavior and docstring. Deprecations and Removals Deprecate modification of session.requote_redirect_url Deprecate stream.unread_data() Deprecated use of boolean in resp.enable_compression() Encourage creation of aiohttp public objects inside a coroutine Drop dead Connection.detach() and Connection.writer. Both methods were broken for more than 2 years. Deprecate app.loop, request.loop, client.loop and connector.loop properties. Deprecate explicit debug argument. Use asyncio debug mode instead. Deprecate body parameter in HTTPException (and derived classes) constructor. Deprecate bare connector close, use async with connector: and await connector.close() instead. Deprecate obsolete read_timeout and conn_timeout in ClientSession constructor.
2018-12-22 23:45:47 +01:00
${PYSITELIB}/aiohttp/web_log.py
${PYSITELIB}/aiohttp/web_log.pyc
${PYSITELIB}/aiohttp/web_log.pyo
${PYSITELIB}/aiohttp/web_middlewares.py
${PYSITELIB}/aiohttp/web_middlewares.pyc
${PYSITELIB}/aiohttp/web_middlewares.pyo
${PYSITELIB}/aiohttp/web_protocol.py
${PYSITELIB}/aiohttp/web_protocol.pyc
${PYSITELIB}/aiohttp/web_protocol.pyo
${PYSITELIB}/aiohttp/web_request.py
${PYSITELIB}/aiohttp/web_request.pyc
${PYSITELIB}/aiohttp/web_request.pyo
${PYSITELIB}/aiohttp/web_response.py
${PYSITELIB}/aiohttp/web_response.pyc
${PYSITELIB}/aiohttp/web_response.pyo
${PYSITELIB}/aiohttp/web_routedef.py
${PYSITELIB}/aiohttp/web_routedef.pyc
${PYSITELIB}/aiohttp/web_routedef.pyo
${PYSITELIB}/aiohttp/web_runner.py
${PYSITELIB}/aiohttp/web_runner.pyc
${PYSITELIB}/aiohttp/web_runner.pyo
${PYSITELIB}/aiohttp/web_server.py
${PYSITELIB}/aiohttp/web_server.pyc
${PYSITELIB}/aiohttp/web_server.pyo
${PYSITELIB}/aiohttp/web_urldispatcher.py
${PYSITELIB}/aiohttp/web_urldispatcher.pyc
${PYSITELIB}/aiohttp/web_urldispatcher.pyo
${PYSITELIB}/aiohttp/web_ws.py
${PYSITELIB}/aiohttp/web_ws.pyc
${PYSITELIB}/aiohttp/web_ws.pyo
${PYSITELIB}/aiohttp/worker.py
${PYSITELIB}/aiohttp/worker.pyc
${PYSITELIB}/aiohttp/worker.pyo