diff options
author | pohmelie <multisosnooley@gmail.com> | 2016-01-27 23:23:11 +0300 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2016-04-13 15:26:38 +0100 |
commit | 81ebba7e0236163b7594938201bf3a6b802ebfaa (patch) | |
tree | f75ae92c1dd879507e718d6234c8b007c4070686 /py/mpconfig.h | |
parent | 959ed931a4d4079b4902f3d56e1696a2370e6c20 (diff) | |
download | micropython-81ebba7e0236163b7594938201bf3a6b802ebfaa.tar.gz micropython-81ebba7e0236163b7594938201bf3a6b802ebfaa.zip |
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`.
Diffstat (limited to 'py/mpconfig.h')
-rw-r--r-- | py/mpconfig.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/py/mpconfig.h b/py/mpconfig.h index 017030b0f4..77ac614939 100644 --- a/py/mpconfig.h +++ b/py/mpconfig.h @@ -564,6 +564,11 @@ typedef double mp_float_t; #define MICROPY_PY_DESCRIPTORS (0) #endif +// Support for async/await/async for/async with +#ifndef MICROPY_PY_ASYNC_AWAIT +#define MICROPY_PY_ASYNC_AWAIT (1) +#endif + // Whether str object is proper unicode #ifndef MICROPY_PY_BUILTINS_STR_UNICODE #define MICROPY_PY_BUILTINS_STR_UNICODE (0) |