Home | History | Annotate | Download | only in Include

Lines Matching defs:Py_INCREF

664 The macros Py_INCREF(op) and Py_DECREF(op) are used to increment or decrement

767 #define Py_INCREF(op) ( \
824 #define Py_XINCREF(op) do { if ((op) == NULL) ; else Py_INCREF(op); } while (0)
831 Py_IncRef(PyObject *);
838 Don't forget to apply Py_INCREF() when returning this value!!!
844 #define Py_RETURN_NONE return Py_INCREF(Py_None), Py_None
921 must call Py_INCREF() explicitly.
930 it carefully, it may save lots of calls to Py_INCREF() and Py_DECREF() at