All patches and comments are welcome. Please squash your changes to logical
commits before using git-format-patch and git-send-email to
patches@git.madduck.net.
If you'd read over the Git project's submission guidelines and adhered to them,
I'd be especially grateful.
7 # Remove brackets for short coroutine/task
9 await (asyncio.sleep(1))
17 await (asyncio.sleep(1)
28 asyncio.sleep(1) # Hello
38 await asyncio.gather(asyncio.sleep(1), asyncio.sleep(1), asyncio.sleep(1), asyncio.sleep(1), asyncio.sleep(1), asyncio.sleep(1), asyncio.sleep(1))
40 # Same as above but with magic trailing comma in function
42 await asyncio.gather(asyncio.sleep(1), asyncio.sleep(1), asyncio.sleep(1), asyncio.sleep(1), asyncio.sleep(1), asyncio.sleep(1), asyncio.sleep(1),)
60 # Keep brackets around non power operations and nested awaits
62 await (set_of_tasks | other_set)
65 await (await asyncio.sleep(1))
67 # It's awaits all the way down...
75 await (await (asyncio.sleep(1)))
78 await (await (await (await (await (asyncio.sleep(1))))))
85 await asyncio.sleep(1)
88 # Remove brackets for short coroutine/task
90 await asyncio.sleep(1)
94 await asyncio.sleep(1)
98 await asyncio.sleep(1)
103 await asyncio.sleep(1) # Hello
107 await asyncio.sleep(1) # Hello
111 await asyncio.sleep(1) # Hello
116 await asyncio.gather(
127 # Same as above but with magic trailing comma in function
129 await asyncio.gather(
145 # Keep brackets around non power operations and nested awaits
147 await (set_of_tasks | other_set)
151 await (await asyncio.sleep(1))
154 # It's awaits all the way down...
164 await (await asyncio.sleep(1))
168 await (await (await (await (await asyncio.sleep(1)))))