fix _PyFrameEvalFunction. Since python 3.11 it receives a `_PyInterpreterFrame`

This commit is contained in:
Erle Carrara 2023-10-07 17:04:03 -03:00
parent 300f2d63ae
commit 0e0e6623f3
No known key found for this signature in database
GPG Key ID: F1D58ADE2D677807
5 changed files with 25 additions and 1 deletions

View File

@ -0,0 +1,2 @@
In Python 3.11 the `_PyFrameEvalFunction` receives a `_PyInterpreterFrame` opaque struct.

View File

@ -5,7 +5,16 @@ use std::os::raw::c_int;
extern "C" { extern "C" {
// skipped non-limited _PyEval_CallTracing // skipped non-limited _PyEval_CallTracing
#[cfg(not(Py_3_11))]
pub fn _PyEval_EvalFrameDefault(arg1: *mut crate::PyFrameObject, exc: c_int) -> *mut PyObject; pub fn _PyEval_EvalFrameDefault(arg1: *mut crate::PyFrameObject, exc: c_int) -> *mut PyObject;
#[cfg(Py_3_11)]
pub fn _PyEval_EvalFrameDefault(
tstate: *mut crate::PyThreadState,
frame: *mut crate::_PyInterpreterFrame,
exc: c_int,
) -> *mut crate::PyObject;
pub fn _PyEval_RequestCodeExtraIndex(func: freefunc) -> c_int; pub fn _PyEval_RequestCodeExtraIndex(func: freefunc) -> c_int;
pub fn PyEval_SetProfile(trace_func: Option<Py_tracefunc>, arg1: *mut PyObject); pub fn PyEval_SetProfile(trace_func: Option<Py_tracefunc>, arg1: *mut PyObject);
pub fn PyEval_SetTrace(trace_func: Option<Py_tracefunc>, arg1: *mut PyObject); pub fn PyEval_SetTrace(trace_func: Option<Py_tracefunc>, arg1: *mut PyObject);

View File

@ -31,6 +31,8 @@ pub(crate) mod pystate;
pub(crate) mod pythonrun; pub(crate) mod pythonrun;
// skipped sysmodule.h // skipped sysmodule.h
pub(crate) mod floatobject; pub(crate) mod floatobject;
#[cfg(not(PyPy))]
pub(crate) mod pyframe;
pub(crate) mod tupleobject; pub(crate) mod tupleobject;
pub(crate) mod unicodeobject; pub(crate) mod unicodeobject;
pub(crate) mod weakrefobject; pub(crate) mod weakrefobject;
@ -58,6 +60,8 @@ pub use self::object::*;
pub use self::objimpl::*; pub use self::objimpl::*;
pub use self::pydebug::*; pub use self::pydebug::*;
pub use self::pyerrors::*; pub use self::pyerrors::*;
#[cfg(not(PyPy))]
pub use self::pyframe::*;
#[cfg(all(Py_3_8, not(PyPy)))] #[cfg(all(Py_3_8, not(PyPy)))]
pub use self::pylifecycle::*; pub use self::pylifecycle::*;
pub use self::pymem::*; pub use self::pymem::*;

View File

@ -0,0 +1,2 @@
#[cfg(Py_3_11)]
opaque_struct!(_PyInterpreterFrame);

View File

@ -69,13 +69,20 @@ extern "C" {
pub fn PyThreadState_DeleteCurrent(); pub fn PyThreadState_DeleteCurrent();
} }
#[cfg(Py_3_9)] #[cfg(all(Py_3_9, not(Py_3_11)))]
pub type _PyFrameEvalFunction = extern "C" fn( pub type _PyFrameEvalFunction = extern "C" fn(
*mut crate::PyThreadState, *mut crate::PyThreadState,
*mut crate::PyFrameObject, *mut crate::PyFrameObject,
c_int, c_int,
) -> *mut crate::object::PyObject; ) -> *mut crate::object::PyObject;
#[cfg(Py_3_11)]
pub type _PyFrameEvalFunction = extern "C" fn(
*mut crate::PyThreadState,
*mut crate::_PyInterpreterFrame,
c_int,
) -> *mut crate::object::PyObject;
#[cfg(Py_3_9)] #[cfg(Py_3_9)]
extern "C" { extern "C" {
/// Get the frame evaluation function. /// Get the frame evaluation function.