bpo-32273: Move asyncio.test_utils to test.test_asyncio (#4785)

This commit is contained in:
Yury Selivanov 2017-12-11 10:04:40 -05:00 committed by GitHub
parent 9edad3c701
commit 3e9751819a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
17 changed files with 29 additions and 61 deletions

View file

@ -17,18 +17,9 @@ import asyncio
from asyncio import coroutines
from asyncio import futures
from asyncio import tasks
from asyncio import test_utils
try:
from test import support
except ImportError:
from asyncio import test_support as support
try:
from test.support.script_helper import assert_python_ok
except ImportError:
try:
from test.script_helper import assert_python_ok
except ImportError:
from asyncio.test_support import assert_python_ok
from test.test_asyncio import utils as test_utils
from test import support
from test.support.script_helper import assert_python_ok
@asyncio.coroutine