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

Function Py_XDECREF

python27-sys/src/object.rs:832–836  ·  view source on GitHub ↗
(op: *mut PyObject)

Source from the content-addressed store, hash-verified

830
831#[inline(always)]
832pub unsafe fn Py_XDECREF(op: *mut PyObject) {
833 if !op.is_null() {
834 Py_DECREF(op)
835 }
836}
837
838#[cfg_attr(windows, link(name = "pythonXY"))]
839extern "C" {

Callers

nothing calls this directly

Calls 1

Py_DECREFFunction · 0.70

Tested by

no test coverage detected