diff options
| author | microDev <70126934+microDev1@users.noreply.github.com> | 2020-11-24 11:11:11 +0530 |
|---|---|---|
| committer | microDev <70126934+microDev1@users.noreply.github.com> | 2020-11-24 11:11:11 +0530 |
| commit | 9dd1783da547bf9d632fa307abcf42f36d260ccf (patch) | |
| tree | 1c2df3a5e6c96dfb63574bf12ca5d8edd32236f3 /py/runtime.h | |
| parent | 040eaa044344562ec1f9905d67b612ea2ec12949 (diff) | |
| parent | ebdc48ae22589080300da249f416bd55f1c121bd (diff) | |
Merge branch 'main' into ps2io-S2
Diffstat (limited to 'py/runtime.h')
| -rw-r--r-- | py/runtime.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/py/runtime.h b/py/runtime.h index ad7d0feab..5e8fda35c 100644 --- a/py/runtime.h +++ b/py/runtime.h @@ -150,6 +150,7 @@ mp_obj_t mp_import_name(qstr name, mp_obj_t fromlist, mp_obj_t level); mp_obj_t mp_import_from(mp_obj_t module, qstr name); void mp_import_all(mp_obj_t module); +NORETURN void mp_raise_arg1(const mp_obj_type_t *exc_type, mp_obj_t arg); NORETURN void mp_raise_msg(const mp_obj_type_t *exc_type, const compressed_string_t *msg); NORETURN void mp_raise_msg_varg(const mp_obj_type_t *exc_type, const compressed_string_t *fmt, ...); NORETURN void mp_raise_msg_vlist(const mp_obj_type_t *exc_type, const compressed_string_t *fmt, va_list argptr); |
