summaryrefslogtreecommitdiffstats
path: root/Lib/asyncio/taskgroups.py
Commit message (Expand)AuthorAgeFilesLines
* gh-116720: Fix corner cases of taskgroups (#117407)Guido van Rossum2024-04-091-6/+13
* gh-115957: Close coroutine if TaskGroup.create_task() raises an error (#116009)Jason Zhang2024-03-061-0/+3
* TaskGroup: Use explicit None check for cancellation error (#114708)Matan Perelman2024-01-291-1/+1
* gh-113848: Handle CancelledError subclasses in asyncio TaskGroup() and timeou...Serhiy Storchaka2024-01-091-3/+5
* gh-112622: Pass name to loop create_task method (#112623)Jamie2023-12-131-3/+3
* gh-111085: Fix invalid state handling in TaskGroup and Timeout (#111111)Serhiy Storchaka2023-10-211-4/+2
* gh-106075: add `asyncio.taskgroups.__all__` to `asyncio.__all__` (#106090)James Webber2023-06-261-1/+1
* GH-105684: Require `asyncio.Task` implementations to support `set_name` metho...Kumar Aditya2023-06-131-1/+1
* gh-104144: Skip scheduling a done callback if a TaskGroup task completes eage...Itamar Ostricher2023-05-051-2/+8
* gh-102560 Add docstrings to asyncio.TaskGroup (#102565)JosephSBoyle2023-03-151-0/+18
* GH-98543: Fix `asyncio.TaskGroup` to not keep reference to errors after rais...Kumar Aditya2022-10-221-5/+5
* GH-95704: Don't suppress errors from tasks when TG is cancelled (#95761)Guido van Rossum2022-08-171-4/+3
* gh-95724: Clarify taskgroups.py license. (#95847)Yury Selivanov2022-08-111-1/+2
* GH-95289: Always call uncancel() when parent cancellation is requested (#95602)Kumar Aditya2022-08-041-8/+9
* GH-94398: TaskGroup: Fail create_task() during shutdown (GH-94400)Guido van Rossum2022-06-301-0/+2
* gh-93297: Make asyncio task groups prevent child tasks from being GCed (#93299)Yury Selivanov2022-05-271-13/+6
* bpo-46994: Accept explicit contextvars.Context in asyncio create_task() API (...Andrew Svetlov2022-03-141-2/+5
* Taskgroup tweaks (GH-31559)Tin Tvrtković2022-02-261-27/+23
* bpo-46752: Uniform TaskGroup.__repr__ (GH-31409)Andrew Svetlov2022-02-201-8/+10
* bpo-46752: Slight improvements to TaskGroup API (GH-31398)Guido van Rossum2022-02-181-18/+4
* bpo-46752: Add TaskGroup; add Task..cancelled(),.uncancel() (GH-31270)Guido van Rossum2022-02-151-0/+235