mirror of
https://github.com/zrax/pycdc.git
synced 2026-06-23 11:34:07 +00:00
Add initial Python 3.14 bytecode support
This commit is contained in:
parent
b428976097
commit
d3bdba9a94
14 changed files with 536 additions and 58 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue