Browse Source

py: Fix __len__ special method result handling.

Having both MP_OBJ_NOT_SUPPORTED and MP_OBJ_NULL is arguably confusing.
pull/609/head
Paul Sokolovsky 11 years ago
parent
commit
7e7940c39d
  1. 7
      py/obj.c

7
py/obj.c

@ -357,7 +357,12 @@ mp_obj_t mp_obj_len_maybe(mp_obj_t o_in) {
} else {
mp_obj_type_t *type = mp_obj_get_type(o_in);
if (type->unary_op != NULL) {
return type->unary_op(MP_UNARY_OP_LEN, o_in);
mp_obj_t val = type->unary_op(MP_UNARY_OP_LEN, o_in);
// TODO: Here's the case of having MP_OBJ_NOT_SUPPORTED is confusing
if (val == MP_OBJ_NOT_SUPPORTED) {
return MP_OBJ_NULL;
}
return val;
} else {
return MP_OBJ_NULL;
}

Loading…
Cancel
Save