Go to file
Dominique Leuenberger 34b5c70db7 Accepting request 951678 from devel:languages:python
- update to 10.1:
  * Made the second parameter of connection handlers optional. It will be
    deprecated in the next major release. The request path is available in
    the :attr:`~legacy.protocol.WebSocketCommonProtocol.path` attribute of
    the first argument.
    If you implemented the connection handler of a server as::
        async def handler(request, path):
            ...
  
    You should replace it by::
  
        async def handler(request):
            path = request.path  # if handler() uses the path argument
            ...
  * Added ``python -m websockets --version``.
  * Reverted optimization of default compression settings for clients, mainly to
    avoid triggering bugs in poorly implemented servers like `AWS API Gateway`_.
  * Mirrored the entire :class:`~asyncio.Server` API
    in :class:`~server.WebSocketServer`.
  * Improved performance for large messages on ARM processors.
  * Documented how to auto-reload on code changes in development.
  * Avoided half-closing TCP connections that are already closed.

OBS-URL: https://build.opensuse.org/request/show/951678
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-websockets?expand=0&rev=17
2022-02-09 19:38:07 +00:00
.gitattributes Accepting request 522408 from home:TheBlackCat:branches:devel:languages:python 2017-09-08 18:35:22 +00:00
.gitignore Accepting request 522408 from home:TheBlackCat:branches:devel:languages:python 2017-09-08 18:35:22 +00:00
10.1.tar.gz - update to 10.1: 2022-02-04 22:09:57 +00:00
python-websockets.changes - update to 10.1: 2022-02-04 22:09:57 +00:00
python-websockets.spec - update to 10.1: 2022-02-04 22:09:57 +00:00