summaryrefslogtreecommitdiffstatshomepage
path: root/py
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-01-15 23:02:53 +0000
committerDamien George <damien.p.george@gmail.com>2014-01-15 23:02:53 +0000
commit613eb25545e26e12c77af7154feb0ad039d86429 (patch)
tree5956a952ba1e9efc3ed46ffa591b633bc90a6ddd /py
parent5573f9f150d513ed3f996722e2b57b58cfb24f3b (diff)
downloadmicropython-613eb25545e26e12c77af7154feb0ad039d86429.tar.gz
micropython-613eb25545e26e12c77af7154feb0ad039d86429.zip
stm: Fix print methods with new kind argument.
Diffstat (limited to 'py')
-rw-r--r--py/obj.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/py/obj.h b/py/obj.h
index cbd12fe862..99d430f490 100644
--- a/py/obj.h
+++ b/py/obj.h
@@ -243,7 +243,6 @@ 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);
-machine_int_t mp_obj_parse_int(mp_obj_t arg, mp_obj_t base_arg);
#if MICROPY_ENABLE_FLOAT
mp_float_t mp_obj_get_float(mp_obj_t self_in);
void mp_obj_get_complex(mp_obj_t self_in, mp_float_t *real, mp_float_t *imag);