py: Add len(bytes).
diff --git a/py/obj.c b/py/obj.c
index 078284f..76350ed 100644
--- a/py/obj.c
+++ b/py/obj.c
@@ -320,7 +320,7 @@
 
 // may return MP_OBJ_NULL
 mp_obj_t mp_obj_len_maybe(mp_obj_t o_in) {
-    if (MP_OBJ_IS_STR(o_in)) {
+    if (MP_OBJ_IS_STR(o_in) || MP_OBJ_IS_TYPE(o_in, &mp_type_bytes)) {
         return MP_OBJ_NEW_SMALL_INT((machine_int_t)mp_obj_str_get_len(o_in));
     } else {
         mp_obj_type_t *type = mp_obj_get_type(o_in);