Python 3.13 initial support (#497)

* Support for JUMP_BACKWARD

* Initial support for Python 3.13

* Remove opcode from another old PR, not needed in the current one

* Update bytes/python_3_13.cpp

Co-authored-by: Michael Hansen <zrax0111@gmail.com>

* Update bytecode_ops.inl

Co-authored-by: Michael Hansen <zrax0111@gmail.com>

* Update .gitignore

Co-authored-by: Michael Hansen <zrax0111@gmail.com>

* Update bytecode_ops.inl

---------

Co-authored-by: Michael Hansen <zrax0111@gmail.com>
This commit is contained in:
Alex
2024-08-08 01:39:40 +03:00
committed by GitHub
parent 48d1bfa59f
commit 75de28decc
6 changed files with 313 additions and 0 deletions

View File

@@ -61,6 +61,7 @@ add_library(pycxx STATIC
bytes/python_3_10.cpp
bytes/python_3_11.cpp
bytes/python_3_12.cpp
bytes/python_3_13.cpp
)
add_executable(pycdas pycdas.cpp)