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
4d825b45
Commit
4d825b45
authored
Dec 19, 2014
by
Victor Stinner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
asyncio: IocpProactor.wait_for_handle() test now also checks the result of the
future
parent
1b9763d0
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
2 deletions
+11
-2
Lib/asyncio/windows_events.py
Lib/asyncio/windows_events.py
+5
-0
Lib/test/test_asyncio/test_windows_events.py
Lib/test/test_asyncio/test_windows_events.py
+6
-2
No files found.
Lib/asyncio/windows_events.py
View file @
4d825b45
...
...
@@ -427,6 +427,11 @@ class IocpProactor:
return
self
.
_register
(
ov
,
None
,
finish_connect_pipe
,
wait_for_post
=
True
)
def
wait_for_handle
(
self
,
handle
,
timeout
=
None
):
"""Wait for a handle.
Return a Future object. The result of the future is True if the wait
completed, or False if the wait did not complete (on timeout).
"""
if
timeout
is
None
:
ms
=
_winapi
.
INFINITE
else
:
...
...
Lib/test/test_asyncio/test_windows_events.py
View file @
4d825b45
...
...
@@ -98,8 +98,10 @@ class ProactorTests(test_utils.TestCase):
# result should be False at timeout
fut
=
self
.
loop
.
_proactor
.
wait_for_handle
(
event
,
0.5
)
start
=
self
.
loop
.
time
()
self
.
loop
.
run_until_complete
(
fut
)
done
=
self
.
loop
.
run_until_complete
(
fut
)
elapsed
=
self
.
loop
.
time
()
-
start
self
.
assertEqual
(
done
,
False
)
self
.
assertFalse
(
fut
.
result
())
self
.
assertTrue
(
0.48
<
elapsed
<
0.9
,
elapsed
)
...
...
@@ -109,8 +111,10 @@ class ProactorTests(test_utils.TestCase):
# result should be True immediately
fut
=
self
.
loop
.
_proactor
.
wait_for_handle
(
event
,
10
)
start
=
self
.
loop
.
time
()
self
.
loop
.
run_until_complete
(
fut
)
done
=
self
.
loop
.
run_until_complete
(
fut
)
elapsed
=
self
.
loop
.
time
()
-
start
self
.
assertEqual
(
done
,
True
)
self
.
assertTrue
(
fut
.
result
())
self
.
assertTrue
(
0
<=
elapsed
<
0.3
,
elapsed
)
...
...
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