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
traceback.c is used to produce augmented tracebacks where C code and values are included in tracebacks to help with debugging. This is done by synthesizing a stack frame during exceptions as done by AddTraceBackHere() in traceback,c. You can #if 0 / #endif the function body and everything will work except the C frames will not show up.
The reason you are seeing the compilation failure is because the CPython internal code for stack frames changed in Python 3.11, and you are using an 8 year old version of APSW. It was fixed in APSW in early 2022. You are using a version of SQLite from 2021.
I would recommend updating to the latest SQLite and APSW, or comment out the function to stay on existing versions. CPython's API keeps changing with each release and APSW changes with them.
Checklist
p4a.branch = develop
)Logs
The text was updated successfully, but these errors were encountered: