commit | 29f84294d88ec493c2de9d6e8dbc12fae3778771 | [log] [tgz] |
---|---|---|
author | James Weaver <james.barrett@bbc.co.uk> | Mon Aug 17 15:19:46 2020 +0100 |
committer | GitHub <noreply@github.com> | Mon Aug 17 07:19:46 2020 -0700 |
tree | 8be16816deff9c8d24efc8198160e74670833768 | |
parent | 99c0ee3c893bb99fd98a97084fc386ce2911eb64 [diff] |
bpo-40782: Change asyncio.AbstractEventLoop.run_in_executor to be a method not a coroutine (GH-21852) asyncio.AbstractEventLoop.run_in_executor should be a method that returns an asyncio Future, not an async method. This matches the concrete implementations, and the documentation better.