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

Function Py_XDECREF

python3-sys/src/object.rs:933–937  ·  view source on GitHub ↗
(op: *mut PyObject)

Source from the content-addressed store, hash-verified

931
932#[inline(always)]
933pub unsafe fn Py_XDECREF(op: *mut PyObject) {
934 if !op.is_null() {
935 Py_DECREF(op)
936 }
937}
938
939#[cfg_attr(windows, link(name = "pythonXY"))]
940extern "C" {

Callers

nothing calls this directly

Calls 1

Py_DECREFFunction · 0.70

Tested by

no test coverage detected