aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/py/source/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'externals/grill/py/source/main.cpp')
-rw-r--r--externals/grill/py/source/main.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/externals/grill/py/source/main.cpp b/externals/grill/py/source/main.cpp
index bf7345d5..3b75f419 100644
--- a/externals/grill/py/source/main.cpp
+++ b/externals/grill/py/source/main.cpp
@@ -556,7 +556,7 @@ short py::patcher_myvol(t_patcher *x)
}
#endif
-void py::collect()
+bool py::collect()
{
if(gcollect) {
PyObject *args = PyTuple_New(0);
@@ -568,8 +568,10 @@ void py::collect()
if(refs) post("py/pyext - Garbage collector reports %i unreachable objects",refs);
#endif
Py_DECREF(ret);
+ return false;
}
}
+ return true;
}
Fifo::~Fifo()