Searched defs:Py_INCREF (Results 1 - 1 of 1) sorted by relevance

/external/python/cpython2/Include/
H A Dobject.h664 The macros Py_INCREF(op) and Py_DECREF(op) are used to increment or decrement
767 #define Py_INCREF(op) ( \ macro
824 #define Py_XINCREF(op) do { if ((op) == NULL) ; else Py_INCREF(op); } while (0)
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

Completed in 151 milliseconds