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
1a402333
Commit
1a402333
authored
Jan 23, 2014
by
Victor Stinner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
asyncio: wait_for() now cancels the future on timeout. Patch written by Gustavo
Carneiro.
parent
e63d132d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
17 deletions
+18
-17
Lib/asyncio/tasks.py
Lib/asyncio/tasks.py
+4
-2
Lib/test/test_asyncio/test_tasks.py
Lib/test/test_asyncio/test_tasks.py
+14
-15
No files found.
Lib/asyncio/tasks.py
View file @
1a402333
...
...
@@ -382,8 +382,9 @@ def wait_for(fut, timeout, *, loop=None):
Coroutine will be wrapped in Task.
Returns result of the Future or coroutine. Raises TimeoutError when
timeout occurs.
Returns result of the Future or coroutine. When a timeout occurs,
it cancels the task and raises TimeoutError. To avoid the task
cancellation, wrap it in shield().
Usage:
...
...
@@ -405,6 +406,7 @@ def wait_for(fut, timeout, *, loop=None):
return
fut
.
result
()
else
:
fut
.
remove_done_callback
(
cb
)
fut
.
cancel
()
raise
futures
.
TimeoutError
()
finally
:
timeout_handle
.
cancel
()
...
...
Lib/test/test_asyncio/test_tasks.py
View file @
1a402333
...
...
@@ -355,30 +355,32 @@ class TaskTests(unittest.TestCase):
when
=
yield
0
self
.
assertAlmostEqual
(
0.1
,
when
)
when
=
yield
0.1
self
.
assertAlmostEqual
(
0.4
,
when
)
yield
0.1
loop
=
test_utils
.
TestLoop
(
gen
)
self
.
addCleanup
(
loop
.
close
)
foo_running
=
None
@
tasks
.
coroutine
def
foo
():
yield
from
tasks
.
sleep
(
0.2
,
loop
=
loop
)
nonlocal
foo_running
foo_running
=
True
try
:
yield
from
tasks
.
sleep
(
0.2
,
loop
=
loop
)
finally
:
foo_running
=
False
return
'done'
fut
=
tasks
.
Task
(
foo
(),
loop
=
loop
)
with
self
.
assertRaises
(
futures
.
TimeoutError
):
loop
.
run_until_complete
(
tasks
.
wait_for
(
fut
,
0.1
,
loop
=
loop
))
self
.
assertFalse
(
fut
.
done
())
self
.
assertTrue
(
fut
.
done
())
# it should have been cancelled due to the timeout
self
.
assertTrue
(
fut
.
cancelled
())
self
.
assertAlmostEqual
(
0.1
,
loop
.
time
())
self
.
assertEqual
(
foo_running
,
False
)
# wait for result
res
=
loop
.
run_until_complete
(
tasks
.
wait_for
(
fut
,
0.3
,
loop
=
loop
))
self
.
assertEqual
(
res
,
'done'
)
self
.
assertAlmostEqual
(
0.2
,
loop
.
time
())
def
test_wait_for_with_global_loop
(
self
):
...
...
@@ -406,11 +408,8 @@ class TaskTests(unittest.TestCase):
events
.
set_event_loop
(
None
)
self
.
assertAlmostEqual
(
0.01
,
loop
.
time
())
self
.
assertFalse
(
fut
.
done
())
# move forward to close generator
loop
.
advance_time
(
10
)
loop
.
run_until_complete
(
fut
)
self
.
assertTrue
(
fut
.
done
())
self
.
assertTrue
(
fut
.
cancelled
())
def
test_wait
(
self
):
...
...
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