py/objset: Include the failed key in a KeyError raised from set.remove.
diff --git a/py/objset.c b/py/objset.c
index 80ed263..aefc26a 100644
--- a/py/objset.c
+++ b/py/objset.c
@@ -380,7 +380,7 @@
     check_set(self_in);
     mp_obj_set_t *self = MP_OBJ_TO_PTR(self_in);
     if (mp_set_lookup(&self->set, item, MP_MAP_LOOKUP_REMOVE_IF_FOUND) == MP_OBJ_NULL) {
-        nlr_raise(mp_obj_new_exception(&mp_type_KeyError));
+        nlr_raise(mp_obj_new_exception_arg1(&mp_type_KeyError, item));
     }
     return mp_const_none;
 }