From 3e9751819ad13a965e8be13c1e5bc5a6811fe6b8 Mon Sep 17 00:00:00 2001 From: Yury Selivanov Date: Mon, 11 Dec 2017 10:04:40 -0500 Subject: bpo-32273: Move asyncio.test_utils to test.test_asyncio (#4785) --- Lib/test/test_asyncio/test_events.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'Lib/test/test_asyncio/test_events.py') diff --git a/Lib/test/test_asyncio/test_events.py b/Lib/test/test_asyncio/test_events.py index 01300246fda..39d5bb54a9d 100644 --- a/Lib/test/test_asyncio/test_events.py +++ b/Lib/test/test_asyncio/test_events.py @@ -3,7 +3,6 @@ import collections.abc import concurrent.futures import functools -import gc import io import os import platform @@ -30,8 +29,7 @@ import asyncio from asyncio import coroutines from asyncio import proactor_events from asyncio import selector_events -from asyncio import sslproto -from asyncio import test_utils +from test.test_asyncio import utils as test_utils try: from test import support except ImportError: -- cgit v1.2.3