Closed
Description
As we progressing with functionality, there come up cases where you'd want to store more data/methods for particular classes. It makes no sense to try to stuff everything into mp_obj_type_t. Then, natural way is to "subclass" mp_obj_type_t, which in C translates to embedding mp_obj_type_t into another structure and adding members to the latter.
Any concerns with such approach?