8000 GH-95097: fix `asyncio.run` for tasks without `uncancel` method by kumaraditya303 · Pull Request #95211 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

GH-95097: fix asyncio.run for tasks without uncancel method #95211

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 7 commits into from
Jul 28, 2022
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Remove stray blank line
  • Loading branch information
gvanrossum authored Jul 27, 2022
commit 9b9d6fefbb31eaabcec5b253f017b090a6d8a415
1 change: 0 additions & 1 deletion Lib/asyncio/runners.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
import functools
import threading
import signal

from . import coroutines
from . import events
from . import exceptions
Expand Down
0