py: Use MP_OBJ_NULL instead of NULL when appropriate.

This commit is contained in:
Damien George
2015-11-20 14:09:20 +00:00
parent 54df549b5f
commit 83229d3ffe
2 changed files with 3 additions and 3 deletions

View File

@@ -306,7 +306,7 @@ mp_obj_t mp_set_lookup(mp_set_t *set, mp_obj_t index, mp_map_lookup_kind_t looku
if (lookup_kind & MP_MAP_LOOKUP_ADD_IF_NOT_FOUND) {
mp_set_rehash(set);
} else {
return NULL;
return MP_OBJ_NULL;
}
}
mp_uint_t hash = MP_OBJ_SMALL_INT_VALUE(mp_unary_op(MP_UNARY_OP_HASH, index));