diff --git a/py/objboundmeth.c b/py/objboundmeth.c
index b0df6a68a702cd841817f7055688a8035bef312d..8fc44f163789c542c63f5e54b316b4d4fcc0a07d 100644
--- a/py/objboundmeth.c
+++ b/py/objboundmeth.c
@@ -89,10 +89,9 @@ STATIC void bound_meth_attr(mp_obj_t self_in, qstr attr, mp_obj_t *dest) {
         // not load attribute
         return;
     }
-    if (attr == MP_QSTR___name__) {
-        mp_obj_bound_meth_t *o = MP_OBJ_TO_PTR(self_in);
-        dest[0] = MP_OBJ_NEW_QSTR(mp_obj_fun_get_name(o->meth));
-    }
+    // Delegate the load to the method object
+    mp_obj_bound_meth_t *self = MP_OBJ_TO_PTR(self_in);
+    mp_load_method_maybe(self->meth, attr, dest);
 }
 #endif
 
diff --git a/tests/basics/fun_name.py b/tests/basics/fun_name.py
index a724f41118084f0fc1f47dae0dd809a445be3dca..53ca935616ce33571413035cd54c47f12793654b 100644
--- a/tests/basics/fun_name.py
+++ b/tests/basics/fun_name.py
@@ -15,3 +15,10 @@ try:
 except AttributeError:
     print('SKIP')
     raise SystemExit
+
+# __name__ of a bound native method is not implemented in uPy
+# the test here is to make sure it doesn't crash
+try:
+    str((1).to_bytes.__name__)
+except AttributeError:
+    pass