[issue39651] Exceptions raised by EventLoop.call_soon_threadsafe

2020-09-12 Thread miss-islington
miss-islington added the comment: New changeset 7dfcc8e0795cce6a8cb42ae2a7f159a38da6b38a by Miss Islington (bot) in branch '3.9': bpo-39651: Fix asyncio proactor _write_to_self() (GH-22197) https://github.com/python/cpython/commit/7dfcc8e0795cce6a8cb42ae2a7f159a38da6b38a --

[issue39651] Exceptions raised by EventLoop.call_soon_threadsafe

2020-09-12 Thread miss-islington
miss-islington added the comment: New changeset 530d1105ed7b0aa5ef76e3116918fe39bc6a4823 by Miss Islington (bot) in branch '3.8': bpo-39651: Fix asyncio proactor _write_to_self() (GH-22197) https://github.com/python/cpython/commit/530d1105ed7b0aa5ef76e3116918fe39bc6a4823 --

[issue39651] Exceptions raised by EventLoop.call_soon_threadsafe

2020-09-12 Thread STINNER Victor
STINNER Victor added the comment: Thanks for the bug report Ben Darnell, it's now fixed. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.10, Python 3.9 ___ Python tracker

[issue39651] Exceptions raised by EventLoop.call_soon_threadsafe

2020-09-12 Thread STINNER Victor
STINNER Victor added the comment: New changeset 1b0f0e3d7d03155da1cf9769a847874d559e57e3 by Victor Stinner in branch 'master': bpo-39651: Fix asyncio proactor _write_to_self() (GH-22197) https://github.com/python/cpython/commit/1b0f0e3d7d03155da1cf9769a847874d559e57e3 --

[issue39651] Exceptions raised by EventLoop.call_soon_threadsafe

2020-09-12 Thread miss-islington
Change by miss-islington : -- pull_requests: +21271 pull_request: https://github.com/python/cpython/pull/22216 ___ Python tracker ___

[issue39651] Exceptions raised by EventLoop.call_soon_threadsafe

2020-09-12 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 7.0 -> 8.0 pull_requests: +21270 pull_request: https://github.com/python/cpython/pull/22215 ___ Python tracker

[issue39651] Exceptions raised by EventLoop.call_soon_threadsafe

2020-09-11 Thread STINNER Victor
Change by STINNER Victor : -- keywords: +patch nosy: +vstinner nosy_count: 6.0 -> 7.0 pull_requests: +21256 stage: -> patch review pull_request: https://github.com/python/cpython/pull/22197 ___ Python tracker

[issue39651] Exceptions raised by EventLoop.call_soon_threadsafe

2020-07-13 Thread Łukasz Langa
Łukasz Langa added the comment: We have trouble finding a Windows expert with available time to address this :/ This is missing 3.8.4 as well. -- ___ Python tracker ___

[issue39651] Exceptions raised by EventLoop.call_soon_threadsafe

2020-05-13 Thread Łukasz Langa
Łukasz Langa added the comment: This sadly missed 3.8.3 but I want this addressed for 3.8.4. -- ___ Python tracker ___ ___

[issue39651] Exceptions raised by EventLoop.call_soon_threadsafe

2020-04-20 Thread Ben Darnell
Ben Darnell added the comment: No, this is unrelated to bpo-39010. -- ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue39651] Exceptions raised by EventLoop.call_soon_threadsafe

2020-04-20 Thread Chris Meyer
Chris Meyer added the comment: Is this related to bpo-39010 too? -- nosy: +cmeyer ___ Python tracker ___ ___ Python-bugs-list

[issue39651] Exceptions raised by EventLoop.call_soon_threadsafe

2020-04-19 Thread Łukasz Langa
Łukasz Langa added the comment: Good catch. We should fix this for Python 3.8.3. -- nosy: +lukasz.langa priority: normal -> release blocker ___ Python tracker ___

[issue39651] Exceptions raised by EventLoop.call_soon_threadsafe

2020-02-17 Thread Michael Hall
Change by Michael Hall : -- nosy: +mikeshardmind ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue39651] Exceptions raised by EventLoop.call_soon_threadsafe

2020-02-16 Thread Ben Darnell
New submission from Ben Darnell : Proactor and selector event loops behave differently when call_soon_threadsafe races with a concurrent call to loop.close(). In a selector event loop, call_soon_threadsafe will either succeed or raise a RuntimeError("Event loop is closed"). In a proactor