diff options
author | Damien George <damien.p.george@gmail.com> | 2014-05-06 16:52:35 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-05-06 16:52:35 +0000 |
commit | c53b408f28942bfc5b64fee86ac89a339dc06e3f (patch) | |
tree | 9d3710b79da47b0b9d664f6e6c453cac39798579 /py/runtime.h | |
parent | 491cbd6a7cd0a212e28c548789db432b4e64327e (diff) | |
parent | b473d0ae86402c07cf0a72edebdfccfae7646d32 (diff) |
Merge branch 'master' of https://github.com/micropython/micropython
Conflicts:
py/argcheck.c
py/objenumerate.c
py/runtime.h
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 719481264..910a48544 100644 --- a/py/runtime.h +++ b/py/runtime.h @@ -57,6 +57,7 @@ void mp_deinit(void); void mp_arg_check_num(uint n_args, uint n_kw, uint n_args_min, uint n_args_max, bool takes_kw); void mp_arg_parse_all(uint n_pos, const mp_obj_t *pos, mp_map_t *kws, uint n_allowed, const mp_arg_t *allowed, mp_arg_val_t *out_vals); void mp_arg_parse_all_kw_array(uint n_pos, uint n_kw, const mp_obj_t *args, uint n_allowed, const mp_arg_t *allowed, mp_arg_val_t *out_vals); +NORETURN void mp_arg_error_unimpl_kw(void); mp_obj_dict_t *mp_locals_get(void); void mp_locals_set(mp_obj_dict_t *d); |