mirror of
https://github.com/python/cpython.git
synced 2025-10-01 12:52:18 +00:00
Merge 3.4 (asyncio)
This commit is contained in:
commit
7a093d9c71
3 changed files with 16 additions and 4 deletions
|
@ -16,9 +16,14 @@ from asyncio import constants
|
||||||
from asyncio import test_utils
|
from asyncio import test_utils
|
||||||
try:
|
try:
|
||||||
from test import support
|
from test import support
|
||||||
from test.support.script_helper import assert_python_ok
|
|
||||||
except ImportError:
|
except ImportError:
|
||||||
from asyncio import test_support as support
|
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 asyncio.test_support import assert_python_ok
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -15,9 +15,14 @@ from asyncio import coroutines
|
||||||
from asyncio import test_utils
|
from asyncio import test_utils
|
||||||
try:
|
try:
|
||||||
from test import support
|
from test import support
|
||||||
from test.support.script_helper import assert_python_ok
|
|
||||||
except ImportError:
|
except ImportError:
|
||||||
from asyncio import test_support as support
|
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 asyncio.test_support import assert_python_ok
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -154,6 +154,8 @@ Core and Builtins
|
||||||
|
|
||||||
- Issue #21354: PyCFunction_New function is exposed by python DLL again.
|
- Issue #21354: PyCFunction_New function is exposed by python DLL again.
|
||||||
|
|
||||||
|
- asyncio: New event loop APIs: set_task_factory() and get_task_factory()
|
||||||
|
|
||||||
Library
|
Library
|
||||||
-------
|
-------
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue