GH-90908: Document asyncio.TaskGroup (GH-94359)

Co-authored-by: CAM Gerlach <CAM.Gerlach@Gerlach.CAM>
This commit is contained in:
Guido van Rossum 2022-06-30 09:16:22 -07:00 committed by GitHub
parent 67d208fbee
commit b6ec6d4041
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 106 additions and 2 deletions

View file

@ -443,6 +443,11 @@ asyncio
the asyncio library. (Contributed by Yves Duprat and Andrew Svetlov in
:gh:`87518`.)
* Add :class:`~asyncio.TaskGroup` class,
an :ref:`asynchronous context manager <async-context-managers>`
holding a group of tasks that will wait for all of them upon exit.
(Contributed by Yury Seliganov and others.)
datetime
--------