| 6 | #[repr(C)] |
| 7 | #[derive(Copy, Clone)] |
| 8 | pub struct PyListObject { |
| 9 | #[cfg(py_sys_config = "Py_TRACE_REFS")] |
| 10 | pub _ob_next: *mut PyObject, |
| 11 | #[cfg(py_sys_config = "Py_TRACE_REFS")] |
| 12 | pub _ob_prev: *mut PyObject, |
| 13 | pub ob_refcnt: Py_ssize_t, |
| 14 | pub ob_type: *mut PyTypeObject, |
| 15 | pub ob_size: Py_ssize_t, |
| 16 | pub ob_item: *mut *mut PyObject, |
| 17 | pub allocated: Py_ssize_t, |
| 18 | } |
| 19 | |
| 20 | #[cfg_attr(windows, link(name = "pythonXY"))] |
| 21 | extern "C" { |
nothing calls this directly
no outgoing calls
no test coverage detected