diff options
author | Damien George <damien.p.george@gmail.com> | 2014-04-04 15:07:17 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-04-04 15:07:17 +0100 |
commit | 36f0ee1a5469cf4cb1d76f2613476644625cbc05 (patch) | |
tree | fd5bc8dffa6c4d29bf7e19c968b4e6a14c2913fc /py/obj.h | |
parent | bd17e1b3ae1b256a718ed09ad1673f5eb913467d (diff) | |
download | micropython-36f0ee1a5469cf4cb1d76f2613476644625cbc05.tar.gz micropython-36f0ee1a5469cf4cb1d76f2613476644625cbc05.zip |
py: Remove mp_obj_less (use mp_binary_op(MP_BINARY_OP_LESS..) instead).
Diffstat (limited to 'py/obj.h')
-rw-r--r-- | py/obj.h | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -357,7 +357,6 @@ int mp_obj_is_true(mp_obj_t arg); bool mp_obj_is_callable(mp_obj_t o_in); machine_int_t mp_obj_hash(mp_obj_t o_in); bool mp_obj_equal(mp_obj_t o1, mp_obj_t o2); -bool mp_obj_less(mp_obj_t o1, mp_obj_t o2); machine_int_t mp_obj_get_int(mp_obj_t arg); bool mp_obj_get_int_maybe(mp_obj_t arg, machine_int_t *value); |