Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
7a093d9c
Commit
7a093d9c
authored
May 11, 2015
by
Yury Selivanov
Browse files
Options
Browse Files
Download
Plain Diff
Merge 3.4 (asyncio)
parents
90ecfe65
740169cd
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
4 deletions
+16
-4
Lib/test/test_asyncio/test_base_events.py
Lib/test/test_asyncio/test_base_events.py
+7
-2
Lib/test/test_asyncio/test_tasks.py
Lib/test/test_asyncio/test_tasks.py
+7
-2
Misc/NEWS
Misc/NEWS
+2
-0
No files found.
Lib/test/test_asyncio/test_base_events.py
View file @
7a093d9c
...
@@ -16,10 +16,15 @@ from asyncio import constants
...
@@ -16,10 +16,15 @@ 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
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
MOCK_ANY
=
mock
.
ANY
MOCK_ANY
=
mock
.
ANY
...
...
Lib/test/test_asyncio/test_tasks.py
View file @
7a093d9c
...
@@ -15,10 +15,15 @@ from asyncio import coroutines
...
@@ -15,10 +15,15 @@ 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
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
))
PY34
=
(
sys
.
version_info
>=
(
3
,
4
))
...
...
Misc/NEWS
View file @
7a093d9c
...
@@ -154,6 +154,8 @@ Core and Builtins
...
@@ -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
-------
-------
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment