10000 bpo-46752: Slight improvements to TaskGroup API by gvanrossum · Pull Request #31398 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

bpo-46752: Slight improvements to TaskGroup API #31398

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 3 commits into from
Feb 18, 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
Remove a bunch of unused stuff
  • Loading branch information
gvanrossum committed Feb 17, 2022
commit 220bb6d1f5aa83e0df5f46e4b09707a52d67f5c2
7 changes: 0 additions & 7 deletions Lib/asyncio/taskgroups.py
Original file line number Diff line number Diff line change Expand Up @@ -3,10 +3,6 @@
__all__ = ["TaskGroup"]
import itertools import textwrap import traceback import types import weakref
from . import events Expand Down Expand Up @@ -223,6 +219,3 @@ def _on_task_done(self, task): # # after TaskGroup is finished. self._parent_cancel_requested = True self._parent_task.cancel()

_name_counter = itertools.count(1).__next__
0