diff options
author | Damien George <damien.p.george@gmail.com> | 2014-03-24 11:49:32 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-03-24 11:49:32 +0000 |
commit | a82d7ef29d80070323e1a2eec1451b6c6558ceb9 (patch) | |
tree | 02b5f9892e0cbcd848832f281a55562b26ae1506 /py/runtime.h | |
parent | 0e9d96f18f10c3ac81f2d8c55ce6ea8b061e0f12 (diff) | |
parent | 4750a8398b62107753d684b18e9cf2534f5de155 (diff) | |
download | micropython-a82d7ef29d80070323e1a2eec1451b6c6558ceb9.tar.gz micropython-a82d7ef29d80070323e1a2eec1451b6c6558ceb9.zip |
Merge branch 'master' of github.com:micropython/micropython
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 7215cc8890..3980e50cc0 100644 --- a/py/runtime.h +++ b/py/runtime.h @@ -12,6 +12,7 @@ mp_obj_t rt_get_cell(mp_obj_t cell); void rt_set_cell(mp_obj_t cell, mp_obj_t val); void rt_store_name(qstr qstr, mp_obj_t obj); void rt_store_global(qstr qstr, mp_obj_t obj); +void rt_delete_name(qstr qstr); mp_obj_t rt_unary_op(int op, mp_obj_t arg); mp_obj_t rt_binary_op(int op, mp_obj_t lhs, mp_obj_t rhs); mp_obj_t rt_make_function_from_id(int unique_code_id, mp_obj_t def_args); |