ref: 84fad5ac08c273b0224d38755ff7e1d884e7345f
parent: 163d1594534a0de4a35c38b79c55d9c5e2f80648
author: Paul Brossier <piem@piem.org>
date: Fri May 13 09:45:42 EDT 2016
python/ext/aubiomodule.c: fix PyMethodDef sentinel
--- a/python/ext/aubiomodule.c
+++ b/python/ext/aubiomodule.c
@@ -238,7 +238,7 @@
{"silence_detection", Py_aubio_silence_detection, METH_VARARGS, Py_aubio_silence_detection_doc},
{"level_detection", Py_aubio_level_detection, METH_VARARGS, Py_aubio_level_detection_doc},
{"window", Py_aubio_window, METH_VARARGS, Py_aubio_window_doc},
- {NULL, NULL} /* Sentinel */
+ {NULL, NULL, 0, NULL} /* Sentinel */
};
#if PY_MAJOR_VERSION >= 3