diff options
| author | Jeff Epler <jepler@gmail.com> | 2018-03-30 17:10:45 -0500 |
|---|---|---|
| committer | Jeff Epler <jepler@gmail.com> | 2018-03-31 08:44:29 -0500 |
| commit | 853f7ac4d001d2098a4f25305e235f5d0e7c26c8 (patch) | |
| tree | 458d7f4e6f047f84ef027e38b384e0d5afe49bb1 /py/bc.c | |
| parent | 1eba5804434a8acc182c23aadf5b5a5dcbe901fa (diff) | |
py/bc: Turn assertion error into exception
Diffstat (limited to 'py/bc.c')
| -rw-r--r-- | py/bc.c | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -190,6 +190,13 @@ void mp_setup_code_state(mp_code_state_t *code_state, size_t n_args, size_t n_kw for (size_t i = 0; i < n_kw; i++) { // the keys in kwargs are expected to be qstr objects mp_obj_t wanted_arg_name = kwargs[2 * i]; + if(MP_UNLIKELY(!MP_OBJ_IS_QSTR(wanted_arg_name))) { + #if MICROPY_ERROR_REPORTING == MICROPY_ERROR_REPORTING_TERSE + mp_raise_TypeError("unexpected keyword argument"); + #else + mp_raise_TypeError("keywords must be strings"); + #endif + } for (size_t j = 0; j < n_pos_args + n_kwonly_args; j++) { if (wanted_arg_name == arg_names[j]) { if (code_state->state[n_state - 1 - j] != MP_OBJ_NULL) { |
