diff options
| author | Damien George <damien.p.george@gmail.com> | 2014-03-24 01:14:59 +0000 |
|---|---|---|
| committer | Damien George <damien.p.george@gmail.com> | 2014-03-24 01:14:59 +0000 |
| commit | 4750a8398b62107753d684b18e9cf2534f5de155 (patch) | |
| tree | 31c68a910a97eccc88bd3df61a94e77a30303afa /py/runtime.h | |
| parent | 4b2b7ceca7915d014a191d3776bc29bdbc5faf02 (diff) | |
| parent | f909034400b3552c933582357d1986dae5b70d04 (diff) | |
Merge pull request #367 from pfalcon/del-name
py: Implement support for "except Exception as var" clause.
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 7215cc889..3980e50cc 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); |
