From 516982242df9eff369f5b2eb9e320f48ba19cdc2 Mon Sep 17 00:00:00 2001 From: Damien George Date: Thu, 3 Sep 2015 23:01:07 +0100 Subject: py: Inline single use of mp_obj_str_get_len in mp_obj_len_maybe. Gets rid of redundant double check for string type. Also remove obsolete declaration of mp_obj_str_get_hash. --- py/objstr.c | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'py/objstr.c') diff --git a/py/objstr.c b/py/objstr.c index f1e4e6b7b..42a1d5c5d 100644 --- a/py/objstr.c +++ b/py/objstr.c @@ -1996,16 +1996,6 @@ STATIC void bad_implicit_conversion(mp_obj_t self_in) { } } -mp_uint_t mp_obj_str_get_len(mp_obj_t self_in) { - // TODO This has a double check for the type, one in obj.c and one here - if (MP_OBJ_IS_STR_OR_BYTES(self_in)) { - GET_STR_LEN(self_in, l); - return l; - } else { - bad_implicit_conversion(self_in); - } -} - // use this if you will anyway convert the string to a qstr // will be more efficient for the case where it's already a qstr qstr mp_obj_str_get_qstr(mp_obj_t self_in) { -- cgit v1.2.3