Home | History | Annotate | Download | only in python2.7

Lines Matching defs:Py_XDECREF

668 NULL pointer.  If it may be NULL, use Py_XINCREF/Py_XDECREF instead.
783 * Py_XDECREF(op);
823 #define Py_XDECREF(op) do { if ((op) == NULL) ; else Py_DECREF(op); } while (0)