You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
818 B
41 lines
818 B
# Test cancelling a task that is waiting on a task that just finishes.
|
|
|
|
try:
|
|
import uasyncio as asyncio
|
|
except ImportError:
|
|
try:
|
|
import asyncio
|
|
except ImportError:
|
|
print("SKIP")
|
|
raise SystemExit
|
|
|
|
|
|
async def sleep_task():
|
|
print("sleep_task sleep")
|
|
await asyncio.sleep(0)
|
|
print("sleep_task wake")
|
|
|
|
|
|
async def wait_task(t):
|
|
print("wait_task wait")
|
|
await t
|
|
print("wait_task wake")
|
|
|
|
|
|
async def main():
|
|
waiting_task = asyncio.create_task(wait_task(asyncio.create_task(sleep_task())))
|
|
|
|
print("main sleep")
|
|
await asyncio.sleep(0)
|
|
print("main sleep")
|
|
await asyncio.sleep(0)
|
|
|
|
waiting_task.cancel()
|
|
print("main wait")
|
|
try:
|
|
await waiting_task
|
|
except asyncio.CancelledError as er:
|
|
print(repr(er))
|
|
|
|
|
|
asyncio.run(main())
|
|
|