Skip to content
Snippets Groups Projects
Commit eb1dec05 authored by Florent Lamiraux's avatar Florent Lamiraux Committed by Florent Lamiraux florent@laas.fr
Browse files

Do not destroy C++ entity when destroying python binding object.

    C++ entity might still be in use.
parent f08b4a5d
No related branches found
No related tags found
No related merge requests found
......@@ -60,7 +60,7 @@ namespace dynamicgraph {
}
// Return the pointer as a PyCObject
return PyCObject_FromVoidPtr((void*)obj, destroy);
return PyCObject_FromVoidPtr((void*)obj, NULL);
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment