Aymeric Augustin

Results 368 comments of Aymeric Augustin

Regarding `SSL connection is closed` I think it comes from this line in asyncio: https://github.com/python/cpython/blob/6927632492cbad86a250aa006c1847e03b03e70b/Lib/asyncio/sslproto.py#L682 This should remove it: ```python logging.getLogger("asyncio").setLevel(logging.ERROR) ```

Latency is now available via a dedicated API. See #1195. One year later, I'm not sure about implementing the rest: * Buffer sizes: I don't know how to get the...

Also I looked for prior art in other WebSocket frameworks and couldn't find anything resembling this. Typical metrics are things like "number of connections to the server".

If I had to make a wild guess, based on typical bugs found in such industrial products, I would bet that the server depends on how the stream is fragmented...

Thank your for fixing the tests! See #1211 for the rest of adding Python 3.11.

I don't have enough information to take action on this issue. Given the lack of updates in two months, I will close it.

Yes, I couldn't agree more. Just use normal imports. This is what the documentation that I just added recommends.

It's that way because: 1. Long ago the library was simple and small and it was OK to cram everything in the toplevel namespace. 2. Now it's growing to support...

Ah, one more reason — as the library was undergoing significant restructuring, managing renames and deprecation warnings in a central place was much easier.

Hello @davidavdav - sorry for not following up earlier. If you're able to confirm that #1241 does what you want, that would be amazing.