mp_obj_get_qstr(): Handle MP_OBJ_QSTR.

genexit-inst
Paul Sokolovsky 2014-01-20 18:20:57 +02:00
parent 91d457a277
commit 3754c4a040
1 changed files with 3 additions and 1 deletions

View File

@ -222,7 +222,9 @@ void mp_obj_get_complex(mp_obj_t arg, mp_float_t *real, mp_float_t *imag) {
#endif
qstr mp_obj_get_qstr(mp_obj_t arg) {
if (MP_OBJ_IS_TYPE(arg, &str_type)) {
if (MP_OBJ_IS_QSTR(arg)) {
return MP_OBJ_QSTR_VALUE(arg);
} else if (MP_OBJ_IS_TYPE(arg, &str_type)) {
return mp_obj_str_get(arg);
} else {
assert(0);