mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
bpo-32751: Wait for task cancel in asyncio.wait_for() when timeout <= 0 (#21895)
When I was fixing bpo-32751 back in GH-7216 I missed the case when *timeout* is zero or negative. This takes care of that. Props to @aaliddell for noticing the inconsistency.
This commit is contained in:
parent
8e19c8be87
commit
c517fc7121
3 changed files with 41 additions and 2 deletions
|
@ -445,8 +445,13 @@ async def wait_for(fut, timeout, *, loop=None):
|
|||
if fut.done():
|
||||
return fut.result()
|
||||
|
||||
fut.cancel()
|
||||
raise exceptions.TimeoutError()
|
||||
await _cancel_and_wait(fut, loop=loop)
|
||||
try:
|
||||
fut.result()
|
||||
except exceptions.CancelledError as exc:
|
||||
raise exceptions.TimeoutError() from exc
|
||||
else:
|
||||
raise exceptions.TimeoutError()
|
||||
|
||||
waiter = loop.create_future()
|
||||
timeout_handle = loop.call_later(timeout, _release_waiter, waiter)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue