summaryrefslogtreecommitdiffstatshomepage
path: root/py/obj.h
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-01-08 11:47:55 +0000
committerDamien George <damien.p.george@gmail.com>2014-01-08 11:47:55 +0000
commitb97669ab9432146c1303dedfaa7b98f7ede3f8db (patch)
tree773cf5fe2a0cae7951751fd01cd7ca9c9c5fe6f5 /py/obj.h
parent6d6bc9efc17c0fd4f28f935280db6d8dee100d4f (diff)
downloadmicropython-b97669ab9432146c1303dedfaa7b98f7ede3f8db.tar.gz
micropython-b97669ab9432146c1303dedfaa7b98f7ede3f8db.zip
py: Improve __build_class__.
Diffstat (limited to 'py/obj.h')
-rw-r--r--py/obj.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/py/obj.h b/py/obj.h
index 71b43cb8d1..208b23442f 100644
--- a/py/obj.h
+++ b/py/obj.h
@@ -161,6 +161,7 @@ mp_obj_t mp_obj_new_class(struct _mp_map_t *class_locals);
mp_obj_t mp_obj_new_instance(mp_obj_t clas);
mp_obj_t mp_obj_new_module(qstr module_name);
+mp_obj_t mp_obj_get_type(mp_obj_t o_in);
const char *mp_obj_get_type_str(mp_obj_t o_in);
void mp_obj_print_helper(void (*print)(void *env, const char *fmt, ...), void *env, mp_obj_t o_in);