diff options
Diffstat (limited to 'py/runtime.h')
-rw-r--r-- | py/runtime.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/py/runtime.h b/py/runtime.h index 6b3ab73d8f..a627fa509b 100644 --- a/py/runtime.h +++ b/py/runtime.h @@ -9,10 +9,10 @@ void mp_deinit(void); void mp_check_nargs(int n_args, machine_uint_t n_args_min, machine_uint_t n_args_max, int n_kw, bool is_kw); -mp_map_t *mp_locals_get(void); -void mp_locals_set(mp_map_t *m); -mp_map_t *mp_globals_get(void); -void mp_globals_set(mp_map_t *m); +mp_obj_dict_t *mp_locals_get(void); +void mp_locals_set(mp_obj_dict_t *d); +mp_obj_dict_t *mp_globals_get(void); +void mp_globals_set(mp_obj_dict_t *d); mp_obj_t mp_load_name(qstr qstr); mp_obj_t mp_load_global(qstr qstr); |