diff options
author | Alois Klink <alois@aloisklink.com> | 2024-01-14 02:15:06 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-14 02:15:06 (GMT) |
commit | fa7d8e97c2a604fcd2c4f44815e83c9742ad2177 (patch) | |
tree | 116af0f1e11cecd29d18eed478ef01a28578f55e /Lib/test | |
parent | e08179216bb0481d7a58800bc8bac63cc97952a8 (diff) | |
download | cpython-fa7d8e97c2a604fcd2c4f44815e83c9742ad2177.zip cpython-fa7d8e97c2a604fcd2c4f44815e83c9742ad2177.tar.gz cpython-fa7d8e97c2a604fcd2c4f44815e83c9742ad2177.tar.bz2 |
[3.12] gh-95649: Document that asyncio contains uvloop code (GH-107536) (#114046)
Some of the asyncio SSL changes in GH-31275 [1] were taken from
v0.16.0 of the uvloop project [2]. In order to comply with the MIT
license, we need to just need to document the copyright information.
[1]: https://github.com/python/cpython/pull/31275
[2]: https://github.com/MagicStack/uvloop/tree/v0.16.0
(cherry picked from commit dce30c9cbc212e5455e100f35ac6afeb30dfd23e)
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_asyncio/test_ssl.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Lib/test/test_asyncio/test_ssl.py b/Lib/test/test_asyncio/test_ssl.py index e9cc735..e072ede 100644 --- a/Lib/test/test_asyncio/test_ssl.py +++ b/Lib/test/test_asyncio/test_ssl.py @@ -1,3 +1,7 @@ +# Contains code from https://github.com/MagicStack/uvloop/tree/v0.16.0 +# SPDX-License-Identifier: PSF-2.0 AND (MIT OR Apache-2.0) +# SPDX-FileCopyrightText: Copyright (c) 2015-2021 MagicStack Inc. http://magic.io + import asyncio import contextlib import gc |