From faedd14eed09a0ae88f7bac55176f3de8295a1a1 Mon Sep 17 00:00:00 2001 From: Thomas Grainger Date: Wed, 11 Oct 2023 17:44:02 +0100 Subject: [PATCH] import support module --- Lib/test/test_asyncio/test_proactor_events.py | 1 + Lib/test/test_asyncio/test_sslproto.py | 1 + Lib/test/test_asyncio/test_taskgroups.py | 1 + 3 files changed, 3 insertions(+) diff --git a/Lib/test/test_asyncio/test_proactor_events.py b/Lib/test/test_asyncio/test_proactor_events.py index 04f5ed5b122b132..ecc140da360dfea 100644 --- a/Lib/test/test_asyncio/test_proactor_events.py +++ b/Lib/test/test_asyncio/test_proactor_events.py @@ -15,6 +15,7 @@ from test.support import os_helper from test.support import socket_helper from test.test_asyncio import utils as test_utils +from test import support def tearDownModule(): diff --git a/Lib/test/test_asyncio/test_sslproto.py b/Lib/test/test_asyncio/test_sslproto.py index 516902c137f7d4e..fca8f7fb411f1b0 100644 --- a/Lib/test/test_asyncio/test_sslproto.py +++ b/Lib/test/test_asyncio/test_sslproto.py @@ -18,6 +18,7 @@ from asyncio import sslproto from test.test_asyncio import utils as test_utils from test.test_asyncio import functional as func_tests +from test import support def tearDownModule(): diff --git a/Lib/test/test_asyncio/test_taskgroups.py b/Lib/test/test_asyncio/test_taskgroups.py index a76e7bfe43f9aba..57cf522a7cf3aab 100644 --- a/Lib/test/test_asyncio/test_taskgroups.py +++ b/Lib/test/test_asyncio/test_taskgroups.py @@ -7,6 +7,7 @@ import contextlib from asyncio import taskgroups import unittest +from test import support # To prevent a warning "test altered the execution environment"