Skip to content
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__