summaryrefslogtreecommitdiff
path: root/py/obj.h
diff options
context:
space:
mode:
authormux <freelancer.c@gmail.com>2014-04-05 15:49:03 +0200
committermux <freelancer.c@gmail.com>2014-04-05 15:49:03 +0200
commitcc849f70f478f7442d19ed2f4c0b4297035b2393 (patch)
tree4b51f36aee08b764ef12e558c2a91246409cb41c /py/obj.h
parent4f7e9f5c445b5c0b262d9dfb8fceda4830f4844b (diff)
Move del to locals
Diffstat (limited to 'py/obj.h')
-rw-r--r--py/obj.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/py/obj.h b/py/obj.h
index 4178295be..952187e46 100644
--- a/py/obj.h
+++ b/py/obj.h
@@ -154,7 +154,6 @@ typedef mp_obj_t (*mp_binary_op_fun_t)(int op, mp_obj_t, mp_obj_t);
typedef void (*mp_load_attr_fun_t)(mp_obj_t self_in, qstr attr, mp_obj_t *dest); // for fail, do nothing; for attr, dest[0] = value; for method, dest[0] = method, dest[1] = self
typedef bool (*mp_store_attr_fun_t)(mp_obj_t self_in, qstr attr, mp_obj_t value); // return true if store succeeded
typedef bool (*mp_store_item_fun_t)(mp_obj_t self_in, mp_obj_t index, mp_obj_t value); // return true if store succeeded
-typedef void (*mp_del_fun_t)(mp_obj_t self_in);
typedef struct _mp_method_t {
qstr name;
@@ -237,7 +236,6 @@ struct _mp_obj_type_t {
unpack seq list tuple
*/
- mp_del_fun_t del;
};
typedef struct _mp_obj_type_t mp_obj_type_t;