Home | History | Annotate | Download | only in Include

Lines Matching defs:Py_INCREF

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

755 #define Py_INCREF(op) ( \
812 #define Py_XINCREF(op) do { if ((op) == NULL) ; else Py_INCREF(op); } while (0)
819 PyAPI_FUNC(void) Py_IncRef(PyObject *);
826 Py_INCREF() when returning this value!!!
832 #define Py_RETURN_NONE return Py_INCREF(Py_None), Py_None
909 must call Py_INCREF() explicitly.
918 it carefully, it may save lots of calls to Py_INCREF() and Py_DECREF() at