summaryrefslogtreecommitdiffstatshomepage
path: root/py/obj.h
diff options
context:
space:
mode:
authorDamien <damien.p.george@gmail.com>2013-12-17 21:35:38 +0000
committerDamien <damien.p.george@gmail.com>2013-12-17 21:35:38 +0000
commita3dcd9e80ce8bf7abae3daa8da82f1b085499989 (patch)
tree2e672ec845297f9c4b4a205379bd73b888ad0793 /py/obj.h
parent8c3da5c2c538e05d66391dd036ccbc91214d4bc5 (diff)
downloadmicropython-a3dcd9e80ce8bf7abae3daa8da82f1b085499989.tar.gz
micropython-a3dcd9e80ce8bf7abae3daa8da82f1b085499989.zip
py: add more Python built-in functions.
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 cbb885503e..746c92bbad 100644
--- a/py/obj.h
+++ b/py/obj.h
@@ -39,6 +39,7 @@ void py_obj_print(py_obj_t o);
bool py_obj_is_callable(py_obj_t o_in);
machine_int_t py_obj_hash(py_obj_t o_in);
bool py_obj_equal(py_obj_t o1, py_obj_t o2);
+bool py_obj_less(py_obj_t o1, py_obj_t o2);
machine_int_t py_obj_get_int(py_obj_t arg);
#if MICROPY_ENABLE_FLOAT