aboutsummaryrefslogtreecommitdiff
path: root/py/objexcept.c
diff options
context:
space:
mode:
authorpohmelie2016-01-27 23:23:11 +0300
committerDamien George2016-04-13 15:26:38 +0100
commit81ebba7e0236163b7594938201bf3a6b802ebfaa (patch)
treef75ae92c1dd879507e718d6234c8b007c4070686 /py/objexcept.c
parent959ed931a4d4079b4902f3d56e1696a2370e6c20 (diff)
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/objexcept.c')
-rw-r--r--py/objexcept.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/py/objexcept.c b/py/objexcept.c
index d8aecb80f..adf17b08d 100644
--- a/py/objexcept.c
+++ b/py/objexcept.c
@@ -197,6 +197,9 @@ MP_DEFINE_EXCEPTION(KeyboardInterrupt, BaseException)
MP_DEFINE_EXCEPTION(GeneratorExit, BaseException)
MP_DEFINE_EXCEPTION(Exception, BaseException)
MP_DEFINE_EXCEPTION_BASE(Exception)
+ #if MICROPY_PY_ASYNC_AWAIT
+ MP_DEFINE_EXCEPTION(StopAsyncIteration, Exception)
+ #endif
MP_DEFINE_EXCEPTION(StopIteration, Exception)
MP_DEFINE_EXCEPTION(ArithmeticError, Exception)
MP_DEFINE_EXCEPTION_BASE(ArithmeticError)