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))))))
89 await asyncio.sleep(1)
92 # Remove brackets for short coroutine/task
94 await asyncio.sleep(1)
98 await asyncio.sleep(1)
102 await asyncio.sleep(1)
107 await asyncio.sleep(1) # Hello
111 await asyncio.sleep(1) # Hello
115 await asyncio.sleep(1) # Hello
120 await asyncio.gather(
131 # Same as above but with magic trailing comma in function
133 await asyncio.gather(
149 # Keep brackets around non power operations and nested awaits
151 await (set_of_tasks | other_set)
155 await (await asyncio.sleep(1))
158 # It's awaits all the way down...
168 await (await asyncio.sleep(1))
172 await (await (await (await (await asyncio.sleep(1)))))