Aaron Chong
Aaron Chong
Fixes #1634 - Discussion #1527 - Caused by #1157 `await recv_stream.receive()` will raise `anyio.EndOfStream` if request is disconnected, due to: - `task_group.cancel_scope.cancel()` in `StreamingResponse.__call__..wrap` and - cancellation check in `await...
Fixes #1634 - Discussion #1527 - Caused by #1157 `RuntimeError: No response returned.` is raised in `BaseHTTPMiddleware` if request is disconnected, due to `task_group.cancel_scope.cancel()` in `StreamingResponse.__call__..wrap` and cancellation check in...
Fixes #175 Missed out in #28, which bust `sent_requests` cache on `accept`, `cancel` and `add_friend`.
Fixes #480 Stack Overflow question: [AsyncHTMLSession returns responses list disorderly! How to sort or make list ordered?](https://stackoverflow.com/q/75313454/8601760) `done` is a `set`, which is unordered. Since `AsyncHTMLSession.run` calls `run_until_complete(...)`, all `tasks`...
### Description Fixes [https://stackoverflow.com/questions/76509663/typeerror-joypadspace-reset-got-an-unexpected-keyword-argument-seed](https://stackoverflow.com/q/76509663/8601760). `JoypadSpace` doesn't correctly override the `reset()` method of `Wrapper`. - `JoypadSpace` `reset()` [was implemented](https://github.com/Kautenja/nes-py/commit/8efb860bb472e99ebb909d8b475a532c11bfff4b) for `gym` 0.10.5 in nes-py 0.8.7 (Jul 2018). - `Wrapper` `reset()` [was...