(op: *mut PyObject)
| 93 | #[cfg(not(Py_LIMITED_API))] |
| 94 | #[inline] |
| 95 | pub unsafe fn PyFrame_Check(op: *mut PyObject) -> c_int { |
| 96 | (Py_TYPE(op) == &mut PyFrame_Type) as c_int |
| 97 | } |
| 98 | |
| 99 | #[cfg(not(Py_LIMITED_API))] |
| 100 | #[cfg_attr(windows, link(name = "pythonXY"))] |