You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Python 3.13 moved a bunch of previously exposed functionality to its private C API, see the Python 3.13 release notes. Of these functions, we currently use _PyTraceback_Add to append the C++ backtrace to our Python wrapper code in
Python 3.13 moved a bunch of previously exposed functionality to its private C API, see the Python 3.13 release notes. Of these functions, we currently use
_PyTraceback_Add
to append the C++ backtrace to our Python wrapper code inopenage/openage/cppinterface/exctranslate.pyx
Lines 46 to 58 in fb88dfc
When Python 3.13 is used for building, the code no longer compiles.
We should probably remove
_PyTraceback_Add
and find a better solution for the backtraces.The text was updated successfully, but these errors were encountered: