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)
864 PyAPI_FUNC(void) Py_IncRef(PyObject *);
871 Don't forget to apply Py_INCREF() when returning this value!!!
877 #define Py_RETURN_NONE return Py_INCREF(Py_None), Py_None
954 must call Py_INCREF() explicitly.
963 it carefully, it may save lots of calls to Py_INCREF() and Py_DECREF() at