1 parent b789c64 commit db5d8c9Copy full SHA for db5d8c9
1 file changed
py/obj.h
@@ -455,8 +455,11 @@ struct _mp_obj_type_t {
455
// A type is an object so must start with this entry, which points to mp_type_type.
456
mp_obj_base_t base;
457
458
- // The name of this type.
459
- qstr name;
+ // Flags associated with this type.
+ uint16_t flags;
460
+
461
+ // The name of this type, a qstr.
462
+ uint16_t name;
463
464
// Corresponds to __repr__ and __str__ special methods.
465
mp_print_fun_t print;
0 commit comments