[issue33469] RuntimeError after closing loop that used run_in_executor

2018-05-29 Thread Yury Selivanov
Change by Yury Selivanov : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue33469] RuntimeError after closing loop that used run_in_executor

2018-05-28 Thread miss-islington
miss-islington added the comment: New changeset a6d6bd70ac95a0f7bbfe07d4e60b43afcec370d2 by Miss Islington (bot) in branch '3.6': bpo-33469: RuntimeError after closing loop that used run_in_executor (GH-7171) https://github.com/python/cpython/commit/a6d6bd70ac95a0f7bbfe07d4e60b43afcec370d2

[issue33469] RuntimeError after closing loop that used run_in_executor

2018-05-28 Thread miss-islington
Change by miss-islington : -- pull_requests: +6811 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33469] RuntimeError after closing loop that used run_in_executor

2018-05-28 Thread Yury Selivanov
Yury Selivanov added the comment: New changeset fdccfe09f0b10776645fdb04a0783d6864c32b21 by Yury Selivanov in branch 'master': bpo-33469: RuntimeError after closing loop that used run_in_executor (GH-7171) https://github.com/python/cpython/commit/fdccfe09f0b10776645fdb04a0783d6864c32b21

[issue33469] RuntimeError after closing loop that used run_in_executor

2018-05-28 Thread miss-islington
Change by miss-islington : -- pull_requests: +6812 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33469] RuntimeError after closing loop that used run_in_executor

2018-05-28 Thread miss-islington
miss-islington added the comment: New changeset 8d8b86116fae91570c26fa48974b54986fbd1b72 by Miss Islington (bot) in branch '3.7': bpo-33469: RuntimeError after closing loop that used run_in_executor (GH-7171) https://github.com/python/cpython/commit/8d8b86116fae91570c26fa48974b54986fbd1b72

[issue33469] RuntimeError after closing loop that used run_in_executor

2018-05-28 Thread Yury Selivanov
Change by Yury Selivanov : -- keywords: +patch pull_requests: +6806 stage: -> patch review ___ Python tracker ___ ___

[issue33469] RuntimeError after closing loop that used run_in_executor

2018-05-28 Thread Yury Selivanov
Yury Selivanov added the comment: Ah, I see, the callback that tracks the state of the wrapped concurrent.Future doesn't check that the loop is closed and its future has been cancelled. I think this is a bug. -- ___ Python tracker

[issue33469] RuntimeError after closing loop that used run_in_executor

2018-05-28 Thread Yury Selivanov
Yury Selivanov added the comment: Hopefully asyncio.run() in Python 3.7 will handle this case correctly. -- ___ Python tracker

[issue33469] RuntimeError after closing loop that used run_in_executor

2018-05-14 Thread Hrvoje Nikšić
Change by Hrvoje Nikšić : -- components: +asyncio nosy: +asvetlov, yselivanov ___ Python tracker ___

[issue33469] RuntimeError after closing loop that used run_in_executor

2018-05-12 Thread Hrvoje Nikšić
New submission from Hrvoje Nikšić : Looking at a StackOverflow question[1], I was unable to find a way to correctly close an event loop that uses run_in_executor() for long-running tasks. The question author tried to implement the following scenario: 1. create some tasks