Skip to content

bpo-40782: Change asyncio.AbstractEventLoop.run_in_executor to be a method not a coroutine #21852

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Aug 17, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Lib/asyncio/events.py
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ def create_task(self, coro, *, name=None):
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):
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Change the method asyncio.AbstractEventLoop.run_in_executor to not be a coroutine.