Salome HOME
Addition of non regression tests on HPContainers.
[modules/yacs.git] / src / runtime / PythonNode.cxx
index 82cfb19e91fcee467faee2034c0b981704128e20..71c79d462c2d2ecc1c5e73320cd665a223c7eeee 100644 (file)
@@ -75,8 +75,8 @@ PythonEntry::~PythonEntry()
 {
   AutoGIL agil;
   DEBTRACE( "_context refcnt: " << _context->ob_refcnt );
-  Py_XDECREF(_pyfuncUnser);
-  Py_XDECREF(_pyfuncSer);
+  // not Py_XDECREF of _pyfuncUnser because it is returned by PyDict_GetItem -> borrowed
+  // not Py_XDECREF of _pyfuncSer because it is returned by PyDict_GetItem -> borrowed
   Py_XDECREF(_context);
 }