mirror of
https://github.com/python/cpython.git
synced 2025-08-31 05:58:33 +00:00
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.
(cherry picked from commit 29f84294d8
)
Co-authored-by: James Weaver <james.barrett@bbc.co.uk>
This commit is contained in:
parent
2c050e52f1
commit
d6bdf6d52f
2 changed files with 2 additions and 1 deletions
|
@ -283,7 +283,7 @@ class AbstractEventLoop:
|
|||
def call_soon_threadsafe(self, callback, *args):
|
||||
raise NotImplementedError
|
||||
|
||||
async def run_in_executor(self, executor, func, *args):
|
||||
def run_in_executor(self, executor, func, *args):
|
||||
raise NotImplementedError
|
||||
|
||||
def set_default_executor(self, executor):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue