Searched defs:Py_XDECREF (Results 1 – 7 of 7) sorted by relevance
599 static inline void Py_XDECREF(PyObject *op) in Py_XDECREF() function606 # define Py_XDECREF(op) Py_XDECREF(_PyObject_CAST(op)) macro
825 #define Py_XDECREF(op) do { if ((op) == NULL) ; else Py_DECREF(op); } while (0) macro
65 #define Py_XDECREF(arg) \ macro