diff options
Diffstat (limited to 'py/runtime.h')
-rw-r--r-- | py/runtime.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/py/runtime.h b/py/runtime.h index 7a806eb55a..e7ac934bf5 100644 --- a/py/runtime.h +++ b/py/runtime.h @@ -119,9 +119,10 @@ py_obj_t rt_call_method_n(int n_args, const py_obj_t *args); py_obj_t rt_build_tuple(int n_args, py_obj_t *items); py_obj_t rt_build_list(int n_args, py_obj_t *items); py_obj_t rt_list_append(py_obj_t list, py_obj_t arg); +py_obj_t rt_build_set(int n_args, py_obj_t *items); +py_obj_t rt_store_set(py_obj_t set, py_obj_t item); py_obj_t rt_build_map(int n_args); py_obj_t rt_store_map(py_obj_t map, py_obj_t key, py_obj_t value); -py_obj_t rt_build_set(int n_args, py_obj_t *items); py_obj_t rt_load_attr(py_obj_t base, qstr attr); void rt_load_method(py_obj_t base, qstr attr, py_obj_t *dest); void rt_store_attr(py_obj_t base, qstr attr, py_obj_t val); |