diff options
author | Alois Klink <alois@aloisklink.com> | 2024-01-12 22:21:13 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-12 22:21:13 (GMT) |
commit | dce30c9cbc212e5455e100f35ac6afeb30dfd23e (patch) | |
tree | 74d5f35de28bc01a6b6d4c020d736874d808c8c9 /Lib/test/test_asyncio/test_ssl.py | |
parent | 8aa126354d93d7c928fb35b842cb3a4bd6e1881f (diff) | |
download | cpython-dce30c9cbc212e5455e100f35ac6afeb30dfd23e.zip cpython-dce30c9cbc212e5455e100f35ac6afeb30dfd23e.tar.gz cpython-dce30c9cbc212e5455e100f35ac6afeb30dfd23e.tar.bz2 |
gh-95649: Document that asyncio contains uvloop code (#107536)
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
Diffstat (limited to 'Lib/test/test_asyncio/test_ssl.py')
-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 |