| 24 | #[repr(C)] |
| 25 | #[derive(Copy, Clone)] |
| 26 | pub struct PyComplexObject { |
| 27 | #[cfg(py_sys_config = "Py_TRACE_REFS")] |
| 28 | pub _ob_next: *mut PyObject, |
| 29 | #[cfg(py_sys_config = "Py_TRACE_REFS")] |
| 30 | pub _ob_prev: *mut PyObject, |
| 31 | pub ob_refcnt: Py_ssize_t, |
| 32 | pub ob_type: *mut PyTypeObject, |
| 33 | pub cval: Py_complex, |
| 34 | } |
| 35 | |
| 36 | #[cfg_attr(windows, link(name = "pythonXY"))] |
| 37 | extern "C" { |
nothing calls this directly
no outgoing calls
no test coverage detected