]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
bpo-46198: Fix `test_asyncio.test_sslproto` (GH-31801)
authorAlex Waygood <Alex.Waygood@Gmail.com>
Thu, 10 Mar 2022 21:36:22 +0000 (21:36 +0000)
committerGitHub <noreply@github.com>
Thu, 10 Mar 2022 21:36:22 +0000 (13:36 -0800)
commit4052dd2296da2ff304b1fa787b100befffa1c9ca
tree2317bb35a24538b32d2ec81c9a547e22b7217663
parent434ffb7f1f86e6b0cdfad3ede59993934d86e464
bpo-46198: Fix `test_asyncio.test_sslproto` (GH-31801)

GH-30297 removed a duplicate `from test import support` statement from `test_asyncio.test_sslproto`. However, in between that PR being filed and it being merged, GH-31275 removed the _other_ `from test import support` statement. This means that `support` is now undefined in `test_asyncio.test_sslproto`, causing the CI to fail on all platforms for all PRS.
Lib/test/test_asyncio/test_sslproto.py