From 8a348b33c7fa095401d653b633afb6e139b0a52f Mon Sep 17 00:00:00 2001 From: Jacob Bower Date: Mon, 25 Nov 2024 19:57:02 -0800 Subject: [PATCH] Switch to borrowing/unstub various Cix_ functions from inside ceval.c Summary: This unblocks enough of the JIT for the test runner to run, so now we can start running Python tests for 3.12 with the JIT. Reviewed By: martindemello Differential Revision: D66399285 fbshipit-source-id: 3f80026331b6d52ef6051a73d45641fdd61fb6ee --- Include/cinder/exports.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Include/cinder/exports.h b/Include/cinder/exports.h index 21bd52d935d..3e43347117f 100644 --- a/Include/cinder/exports.h +++ b/Include/cinder/exports.h @@ -157,10 +157,10 @@ typedef struct { CiAPI_DATA(int) lltrace; CiAPI_FUNC(int) Cix_eval_frame_handle_pending(PyThreadState *tstate); -CiAPI_FUNC(PyObject *) - Cix_special_lookup(PyThreadState *tstate, PyObject *o, _Py_Identifier *id); CiAPI_FUNC(void) Cix_format_kwargs_error(PyThreadState *tstate, PyObject *func, PyObject *kwargs); +CiAPI_FUNC(PyObject *) + Cix_special_lookup(PyThreadState *tstate, PyObject *o, _Py_Identifier *id); CiAPI_FUNC(void) Cix_format_awaitable_error(PyThreadState *tstate, PyTypeObject *type, int prevprevopcode, int prevopcode);