py: add async/await/async for/async with syntax
They are sugar for marking function as generator, "yield from"
and pep492 python "semantically equivalents" respectively.
@dpgeorge was the original author of this patch, but @pohmelie made
changes to implement `async for` and `async with`.
diff --git a/py/lexer.c b/py/lexer.c
index 76abedd..1639740 100644
--- a/py/lexer.c
+++ b/py/lexer.c
@@ -234,6 +234,10 @@
"and",
"as",
"assert",
+ #if MICROPY_PY_ASYNC_AWAIT
+ "async",
+ "await",
+ #endif
"break",
"class",
"continue",