Skip to content

Commit 1908616

Browse files
committed
rename manual_finalize to force_finalize
1 parent 272f671 commit 1908616

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/methods.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ extern "C"
194194
return PyUnicode_FromString(scorepy::abspath(path).c_str());
195195
}
196196

197-
static PyObject* manual_finalize(PyObject* self, PyObject* args)
197+
static PyObject* force_finalize(PyObject* self, PyObject* args)
198198
{
199199
SCOREP_FinalizeMeasurement();
200200
Py_RETURN_NONE;
@@ -221,7 +221,7 @@ extern "C"
221221
{ "get_experiment_dir_name", get_experiment_dir_name, METH_VARARGS,
222222
"Get the Score-P experiment dir." },
223223
{ "abspath", abspath, METH_VARARGS, "Estimates the absolute Path." },
224-
{ "manual_finalize", manual_finalize, METH_VARARGS, "triggers a finalize" },
224+
{ "force_finalize", force_finalize, METH_VARARGS, "triggers a finalize" },
225225
{ "reregister_exit_handler", reregister_exit_handler, METH_VARARGS,
226226
"register an new atexit handler" },
227227
{ NULL, NULL, 0, NULL } /* Sentinel */

0 commit comments

Comments
 (0)