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.
22 lines
364 B
22 lines
364 B
# Test current_task() function
|
|
|
|
try:
|
|
import asyncio
|
|
except ImportError:
|
|
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())
|
|
|