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

Class PyIntObject

python27-sys/src/intobject.rs:8–16  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6#[repr(C)]
7#[derive(Copy, Clone)]
8pub struct PyIntObject {
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_ival: c_long,
16}
17
18#[cfg_attr(windows, link(name = "pythonXY"))]
19extern "C" {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected