diff options
Diffstat (limited to 'py/qstrdefs.h')
-rw-r--r-- | py/qstrdefs.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/py/qstrdefs.h b/py/qstrdefs.h index da22a40b57..a3b68832c6 100644 --- a/py/qstrdefs.h +++ b/py/qstrdefs.h @@ -94,6 +94,14 @@ Q(__neg__) Q(__pos__) #endif +#if MICROPY_PY_ASYNC_AWAIT +Q(__aiter__) +Q(__anext__) +Q(__aenter__) +Q(__aexit__) +Q(StopAsyncIteration) +#endif + Q(micropython) Q(bytecode) Q(const) |