forked from adafruit/circuitpython
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathasyncio_gather_notimpl.py
65 lines (47 loc) · 1.52 KB
/
asyncio_gather_notimpl.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# Test asyncio.gather() function, features that are not implemented.
try:
import asyncio
except ImportError:
print("SKIP")
raise SystemExit
# CIRCUITPY-CHANGE: CircuitPython provides __await__()
async def foo():
return 42
try:
fooc = foo()
fooc.__await__
# Avoid "coroutine was never awaited" warning
asyncio.run(fooc)
except AttributeError:
print("SKIP")
raise SystemExit
def custom_handler(loop, context):
print(repr(context["exception"]))
async def task(id):
print("task start", id)
await asyncio.sleep(0.01)
print("task end", id)
return id
async def gather_task(t0, t1):
print("gather_task start")
await asyncio.gather(t0, t1)
print("gather_task end")
async def main():
loop = asyncio.get_event_loop()
loop.set_exception_handler(custom_handler)
# Test case where can't wait on a task being gathered.
tasks = [asyncio.create_task(task(1)), asyncio.create_task(task(2))]
gt = asyncio.create_task(gather_task(tasks[0], tasks[1]))
await asyncio.sleep(0) # let the gather start
try:
await tasks[0] # can't await because this task is part of the gather
except RuntimeError as er:
print(repr(er))
await gt
print("====")
# Test case where can't gather on a task being waited.
tasks = [asyncio.create_task(task(1)), asyncio.create_task(task(2))]
asyncio.create_task(gather_task(tasks[0], tasks[1]))
await tasks[0] # wait on this task before the gather starts
await tasks[1]
asyncio.run(main())