diff tests/test_parse_files/test_async_for.py @ 71:2c1e2ce41263

Add ast.AsyncFor.
author Bastien Orivel <eijebong@bananium.fr>
date Mon, 13 Jun 2016 18:02:34 +0200
parents
children
line wrap: on
line diff
new file mode 100644
--- /dev/null
+++ b/tests/test_parse_files/test_async_for.py
@@ -0,0 +1,5 @@
+async def a():
+    async for i in range(5):
+        print(i)
+    else:
+        print("he")