8000 gh-128552: fix refcycles in eager task creation by graingert · Pull Request #128553 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-128552: fix refcycles in eager task creation #128553

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 13 commits into from
Jan 7, 2025
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
Update Lib/asyncio/base_events.py
  • Loading branch information
graingert authored Jan 6, 2025
commit 8a4eb568f721a6f90d277faf660973f0386f34a8
1 change: 1 addition & 0 deletions Lib/asyncio/base_events.py
Original file line number Diff line number Diff line change
Expand Up @@ -463,6 +463,7 @@ def create_task(self, coro, *, name=None, context=None):

Return a task object.
"""
task = None
try:
self._check_closed()
if self._task_factory is None:
Expand Down
Loading
0