Reference counting
Increase the reference count:
Py_INCREF(myobj);
(i.e., I need this object, it cannot be deleted elsewhere)
Decrease the reference count:
Py_DECREF(myobj);
(i.e., I don't need this object, it can be deleted)