From b9e02a7a9548c15b522c8f8a9fed14679fde726d Mon Sep 17 00:00:00 2001 From: Alex Waygood Date: Thu, 10 Mar 2022 21:10:07 +0000 Subject: [PATCH] bpo-46198: Fix `test_asyncio.test_sslproto` 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 | 1 + 1 file changed, 1 insertion(+) diff --git a/Lib/test/test_asyncio/test_sslproto.py b/Lib/test/test_asyncio/test_sslproto.py index 4095b4dfa84ebd..52a45f1c7c6e96 100644 --- a/Lib/test/test_asyncio/test_sslproto.py +++ b/Lib/test/test_asyncio/test_sslproto.py @@ -4,6 +4,7 @@ import socket import unittest import weakref +from test import support from unittest import mock try: import ssl