diff options
author | Damien George <damien.p.george@gmail.com> | 2014-04-08 21:11:49 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-04-08 21:11:49 +0100 |
commit | 1d24ea5207ba4b62b20dbba22ab2800496418463 (patch) | |
tree | 0ac953019f01f030778f2bc6381b69884e7124be /py/runtime.h | |
parent | 134c10e776a5d75cfdd6bf98697cb50d7da7adf6 (diff) |
py: Finish implementation of all del opcodes.
At this point, all opcodes are now implemented!
Some del opcodes have been combined with store opcodes, with the value
to store being MP_OBJ_NULL.
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 ab34be2da..4fc381852 100644 --- a/py/runtime.h +++ b/py/runtime.h @@ -20,6 +20,7 @@ mp_obj_t mp_load_build_class(void); void mp_store_name(qstr qstr, mp_obj_t obj); void mp_store_global(qstr qstr, mp_obj_t obj); void mp_delete_name(qstr qstr); +void mp_delete_global(qstr qstr); mp_obj_t mp_unary_op(int op, mp_obj_t arg); mp_obj_t mp_binary_op(int op, mp_obj_t lhs, mp_obj_t rhs); |