[issue40782] AbstactEventLoop.run_in_executor is listed as an async method, but should actually return a Future

2020-08-17 Thread Guido van Rossum
Change by Guido van Rossum : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue40782] AbstactEventLoop.run_in_executor is listed as an async method, but should actually return a Future

2020-08-17 Thread miss-islington
miss-islington added the comment: New changeset d6bdf6d52f0400df1bd1dce24aaad9514015c755 by Miss Islington (bot) in branch '3.9': bpo-40782: Change asyncio.AbstractEventLoop.run_in_executor to be a method not a coroutine (GH-21852)

[issue40782] AbstactEventLoop.run_in_executor is listed as an async method, but should actually return a Future

2020-08-17 Thread miss-islington
miss-islington added the comment: New changeset 1baa8b14ee23ef3040923f53565c8d1bafd28117 by Miss Islington (bot) in branch '3.8': bpo-40782: Change asyncio.AbstractEventLoop.run_in_executor to be a method not a coroutine (GH-21852)

[issue40782] AbstactEventLoop.run_in_executor is listed as an async method, but should actually return a Future

2020-08-17 Thread miss-islington
Change by miss-islington : -- pull_requests: +21020 pull_request: https://github.com/python/cpython/pull/21903 ___ Python tracker ___

[issue40782] AbstactEventLoop.run_in_executor is listed as an async method, but should actually return a Future

2020-08-17 Thread miss-islington
Change by miss-islington : -- pull_requests: +21021 pull_request: https://github.com/python/cpython/pull/21904 ___ Python tracker ___

[issue40782] AbstactEventLoop.run_in_executor is listed as an async method, but should actually return a Future

2020-08-17 Thread miss-islington
miss-islington added the comment: New changeset 29f84294d88ec493c2de9d6e8dbc12fae3778771 by James Weaver in branch 'master': bpo-40782: Change asyncio.AbstractEventLoop.run_in_executor to be a method not a coroutine (GH-21852)

[issue40782] AbstactEventLoop.run_in_executor is listed as an async method, but should actually return a Future

2020-08-14 Thread Ned Deily
Change by Ned Deily : -- components: +asyncio ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue40782] AbstactEventLoop.run_in_executor is listed as an async method, but should actually return a Future

2020-08-14 Thread James Barrett
James Barrett added the comment: https://github.com/python/cpython/pull/21852 -- ___ Python tracker ___ ___ Python-bugs-list

[issue40782] AbstactEventLoop.run_in_executor is listed as an async method, but should actually return a Future

2020-08-13 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- title: AbstactEventLoop.run_in_executor is listed as an async method, but should actually return a Futrue -> AbstactEventLoop.run_in_executor is listed as an async method, but should actually return a Future ___