MCPcopy Create free account
hub / github.com/dgrunwald/rust-cpython / PyComplexObject

Class PyComplexObject

python27-sys/src/complexobject.rs:26–34  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

24#[repr(C)]
25#[derive(Copy, Clone)]
26pub 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"))]
37extern "C" {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected