[issue44508] asyncio: document failure mode for loop.call_soon_threadsafe

2021-08-17 Thread Łukasz Langa
Łukasz Langa added the comment: Thanks for reporting, Mark, and for the patch, meowmeowcat! ✨  ✨ -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue44508] asyncio: document failure mode for loop.call_soon_threadsafe

2021-08-17 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset e2320c6a34d44a0efa7ecc693c3a6215014b7b6e by Miss Islington (bot) in branch '3.9': bpo-44508: [Doc] Document failure mode for loop.call_soon_threadsafe (GH-27688) (GH-27805)

[issue44508] asyncio: document failure mode for loop.call_soon_threadsafe

2021-08-17 Thread miss-islington
miss-islington added the comment: New changeset bbb10761b64095425f7f8dcb3bc1f0d8bdee528a by Miss Islington (bot) in branch '3.10': bpo-44508: [Doc] Document failure mode for loop.call_soon_threadsafe (GH-27688) https://github.com/python/cpython/commit/bbb10761b64095425f7f8dcb3bc1f0d8bdee528a

[issue44508] asyncio: document failure mode for loop.call_soon_threadsafe

2021-08-17 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 6.0 -> 7.0 pull_requests: +26270 pull_request: https://github.com/python/cpython/pull/27804 ___ Python tracker

[issue44508] asyncio: document failure mode for loop.call_soon_threadsafe

2021-08-17 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 3240bc62f4e0afa09964f3afc845697f0a0806b9 by meowmeowmeowcat in branch 'main': bpo-44508: [Doc] Document failure mode for loop.call_soon_threadsafe (GH-27688) https://github.com/python/cpython/commit/3240bc62f4e0afa09964f3afc845697f0a0806b9

[issue44508] asyncio: document failure mode for loop.call_soon_threadsafe

2021-08-17 Thread miss-islington
Change by miss-islington : -- pull_requests: +26271 pull_request: https://github.com/python/cpython/pull/27805 ___ Python tracker ___

[issue44508] asyncio: document failure mode for loop.call_soon_threadsafe

2021-08-09 Thread meowmeowcat
meowmeowcat added the comment: Thanks! I've opened a PR for this issue. -- ___ Python tracker ___ ___ Python-bugs-list mailing

[issue44508] asyncio: document failure mode for loop.call_soon_threadsafe

2021-08-09 Thread meowmeowcat
Change by meowmeowcat : -- keywords: +patch nosy: +meowmeowmeowcat nosy_count: 4.0 -> 5.0 pull_requests: +26174 stage: -> patch review pull_request: https://github.com/python/cpython/pull/27688 ___ Python tracker

[issue44508] asyncio: document failure mode for loop.call_soon_threadsafe

2021-06-25 Thread Mark Dickinson
New submission from Mark Dickinson : `loop.call_soon_threadsafe` raises `RuntimeError` when the event loop has been closed, but that fact doesn't seem to be documented. It would be useful to document it so that that it's clear that that behaviour is part of the API, and can be depended on.