release_mem.h
1  #include "Python.h"
2  
3  void release_co_extra(void *obj) {
4      Py_XDECREF(obj);
5  }