circuitpython/tests/extmod/uasyncio_current_task.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
364 B
Python
Raw Normal View History

# Test current_task() function
try:
2023-08-22 11:15:46 -04:00
import asyncio
except ImportError:
2023-08-22 11:15:46 -04:00
print("SKIP")
raise SystemExit
async def task(result):
result[0] = asyncio.current_task()
async def main():
result = [None]
t = asyncio.create_task(task(result))
await asyncio.sleep(0)
await asyncio.sleep(0)
print(t is result[0])
asyncio.run(main())