From 7da4937748eb588bb0e977839061ce76cab1b252 Mon Sep 17 00:00:00 2001 From: Yury Selivanov Date: Thu, 11 Aug 2022 16:12:06 -0700 Subject: [PATCH] gh-95724: Clarify taskgroups.py license. (#95847) --- Lib/asyncio/taskgroups.py | 3 ++- Lib/test/test_asyncio/test_taskgroups.py | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Lib/asyncio/taskgroups.py b/Lib/asyncio/taskgroups.py index 097b4864f7a..9be4838e3c7 100644 --- a/Lib/asyncio/taskgroups.py +++ b/Lib/asyncio/taskgroups.py @@ -1,4 +1,5 @@ -# Adapted with permission from the EdgeDB project. +# Adapted with permission from the EdgeDB project; +# license: PSFL. __all__ = ["TaskGroup"] diff --git a/Lib/test/test_asyncio/test_taskgroups.py b/Lib/test/test_asyncio/test_taskgroups.py index 99498e7b36f..74bae06af8e 100644 --- a/Lib/test/test_asyncio/test_taskgroups.py +++ b/Lib/test/test_asyncio/test_taskgroups.py @@ -1,4 +1,5 @@ -# Adapted with permission from the EdgeDB project. +# Adapted with permission from the EdgeDB project; +# license: PSFL. import asyncio