mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Sync asyncio changes from the main repo.
This commit is contained in:
parent
37c4f78390
commit
740169cd24
5 changed files with 94 additions and 16 deletions
|
@ -15,10 +15,15 @@ from asyncio import coroutines
|
|||
from asyncio import test_utils
|
||||
try:
|
||||
from test import support
|
||||
from test.script_helper import assert_python_ok
|
||||
except ImportError:
|
||||
from asyncio import test_support as support
|
||||
from asyncio.test_support import assert_python_ok
|
||||
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
|
||||
|
||||
|
||||
PY34 = (sys.version_info >= (3, 4))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue