diff options
author | Damien George <damien.p.george@gmail.com> | 2016-08-14 16:35:10 +1000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2016-08-14 16:35:10 +1000 |
commit | 1a0d3fd6325ed8d7ff0f893c575055b7cd4c8dd3 (patch) | |
tree | 0156799e39505b795ed3e2950b8b1286c64455f4 | |
parent | 4aaa5adf9f13dc875cd0eaadc2951a3b24c8cf15 (diff) | |
download | micropython-1a0d3fd6325ed8d7ff0f893c575055b7cd4c8dd3.tar.gz micropython-1a0d3fd6325ed8d7ff0f893c575055b7cd4c8dd3.zip |
py/runtime.h: Move comment about mp_not_implemented to correct place.
-rw-r--r-- | py/runtime.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/py/runtime.h b/py/runtime.h index f81a6263d0..06e68924b2 100644 --- a/py/runtime.h +++ b/py/runtime.h @@ -133,12 +133,11 @@ 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); -// Raise NotImplementedError with given message NORETURN void mp_raise_msg(const mp_obj_type_t *exc_type, const char *msg); //NORETURN void nlr_raise_msg_varg(const mp_obj_type_t *exc_type, const char *fmt, ...); NORETURN void mp_raise_ValueError(const char *msg); NORETURN void mp_raise_TypeError(const char *msg); -NORETURN void mp_not_implemented(const char *msg); +NORETURN void mp_not_implemented(const char *msg); // Raise NotImplementedError with given message NORETURN void mp_exc_recursion_depth(void); #if MICROPY_BUILTIN_METHOD_CHECK_SELF_ARG |