diff options
| author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-05-06 19:25:25 +0300 |
|---|---|---|
| committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-05-06 19:31:49 +0300 |
| commit | 47d3bd3b3189f44d9979e9ce1555e73629a3bbc7 (patch) | |
| tree | 10b775ce8e9359dc62af94605a38122006152353 /py/runtime.h | |
| parent | 33b3a6905d30157efa8393893fd11a5104834354 (diff) | |
py: enumerate(): Add NotImplementedError for kwargs.
Addresses #577.
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 46be12dec..beb687e84 100644 --- a/py/runtime.h +++ b/py/runtime.h @@ -56,6 +56,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); +NORETURN void mp_arg_error_unimpl_kw(); mp_obj_dict_t *mp_locals_get(void); void mp_locals_set(mp_obj_dict_t *d); |
