Zhiwei Liang
Zhiwei Liang
Maybe we can use https://docs.microsoft.com/en-us/dotnet/api/system.io.compression.zipfile?view=netcore-3.1 ?
> > @d2dyno1 Do you want to work on this? We will probably want to use 7zip or something similar to power the feature. > > @yaichenbaum This is not...
Is this issue somehow related to #1874 since they are both about cleaning in shutdown? And how was #1874 going so far?
Thanks. So, named background tasks clean shutdown was done. Here we would need to clean named signal tasks (asyncio tasks, not background tasks) as well. Is my understanding correct? Do...
It looks good to me. Let's make it ready and run the CI?
I think we still need to fix this, right? Any update?
> ~Still preferring a solution that only uses `__aiter__`.~ Don't care which way it is done. Just removed `__anext__`, lol.
> Can you add a test? Our test client with WebSocket mimic client support was not released so the CI would fail in this PR. Can we do a release...
I will take a look and see what can be done, if no one has started working on it. Thanks for creating the issue!
> You can do it without `__anext__` or any other extra boilerplate by simply adding this function to the websocket class: > > ```python > async def __aiter__(self): > while...