-
- Downloads
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`.
Showing
- py/compile.c 208 additions, 26 deletionspy/compile.c
- py/grammar.h 26 additions, 5 deletionspy/grammar.h
- py/lexer.c 4 additions, 0 deletionspy/lexer.c
- py/lexer.h 4 additions, 0 deletionspy/lexer.h
- py/modbuiltins.c 3 additions, 0 deletionspy/modbuiltins.c
- py/mpconfig.h 5 additions, 0 deletionspy/mpconfig.h
- py/obj.h 1 addition, 0 deletionspy/obj.h
- py/objexcept.c 3 additions, 0 deletionspy/objexcept.c
- py/qstrdefs.h 8 additions, 0 deletionspy/qstrdefs.h
- py/repl.c 3 additions, 0 deletionspy/repl.c
Loading
Please register or sign in to comment