Update pyframe.rs
This commit is contained in:
parent
b651502c11
commit
7a7926c0ff
|
@ -1,4 +1,4 @@
|
|||
#[cfg(Py_3_9)]
|
||||
#[cfg(any(Py_3_10, all(Py_3_9, not(Py_LIMITED_API))))]
|
||||
use crate::PyCodeObject;
|
||||
#[cfg(not(Py_LIMITED_API))]
|
||||
use crate::PyFrameObject;
|
||||
|
@ -9,6 +9,6 @@ opaque_struct!(PyFrameObject);
|
|||
|
||||
extern "C" {
|
||||
pub fn PyFrame_GetLineNumber(f: *mut PyFrameObject) -> c_int;
|
||||
#[cfg(Py_3_9)]
|
||||
#[cfg(any(Py_3_10, all(Py_3_9, not(Py_LIMITED_API))))]
|
||||
pub fn PyFrame_GetCode(f: *mut PyFrameObject) -> *mut PyCodeObject;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue