Add initial Python 3.14 bytecode support

This commit is contained in:
Techuouo520 2026-05-25 20:22:39 +08:00
commit d3bdba9a94
14 changed files with 536 additions and 58 deletions

View file

@ -62,6 +62,8 @@ PycRef<PycObject> CreateObject(int type)
case PycObject::TYPE_SET:
case PycObject::TYPE_FROZENSET:
return new PycSet(type);
case PycObject::TYPE_SLICE:
return new PycSlice(type);
default:
fprintf(stderr, "CreateObject: Got unsupported type 0x%X\n", type);
return NULL;