From: Paul Brossier Date: Fri, 26 Oct 2018 17:49:30 +0000 (+0200) Subject: [py] wrap long lines in aubiomodule.c X-Git-Tag: 0.4.8~92^2~8^2 X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=72d08ae2cbb7eae10ddabe5769088d933862e8fd;p=aubio.git [py] wrap long lines in aubiomodule.c --- diff --git a/python/ext/aubiomodule.c b/python/ext/aubiomodule.c index e97c3d35..7c4c4463 100644 --- a/python/ext/aubiomodule.c +++ b/python/ext/aubiomodule.c @@ -117,7 +117,9 @@ Py_bintomidi (PyObject * self, PyObject * args) smpl_t input, samplerate, fftsize; smpl_t output; - if (!PyArg_ParseTuple (args, "|" AUBIO_NPY_SMPL_CHR AUBIO_NPY_SMPL_CHR AUBIO_NPY_SMPL_CHR , &input, &samplerate, &fftsize)) { + if (!PyArg_ParseTuple (args, + "" AUBIO_NPY_SMPL_CHR AUBIO_NPY_SMPL_CHR AUBIO_NPY_SMPL_CHR, + &input, &samplerate, &fftsize)) { return NULL; } @@ -132,7 +134,9 @@ Py_miditobin (PyObject * self, PyObject * args) smpl_t input, samplerate, fftsize; smpl_t output; - if (!PyArg_ParseTuple (args, "|" AUBIO_NPY_SMPL_CHR AUBIO_NPY_SMPL_CHR AUBIO_NPY_SMPL_CHR , &input, &samplerate, &fftsize)) { + if (!PyArg_ParseTuple (args, + "" AUBIO_NPY_SMPL_CHR AUBIO_NPY_SMPL_CHR AUBIO_NPY_SMPL_CHR, + &input, &samplerate, &fftsize)) { return NULL; } @@ -147,7 +151,9 @@ Py_bintofreq (PyObject * self, PyObject * args) smpl_t input, samplerate, fftsize; smpl_t output; - if (!PyArg_ParseTuple (args, "|" AUBIO_NPY_SMPL_CHR AUBIO_NPY_SMPL_CHR AUBIO_NPY_SMPL_CHR, &input, &samplerate, &fftsize)) { + if (!PyArg_ParseTuple (args, + "" AUBIO_NPY_SMPL_CHR AUBIO_NPY_SMPL_CHR AUBIO_NPY_SMPL_CHR, + &input, &samplerate, &fftsize)) { return NULL; } @@ -162,7 +168,9 @@ Py_freqtobin (PyObject * self, PyObject * args) smpl_t input, samplerate, fftsize; smpl_t output; - if (!PyArg_ParseTuple (args, "|" AUBIO_NPY_SMPL_CHR AUBIO_NPY_SMPL_CHR AUBIO_NPY_SMPL_CHR, &input, &samplerate, &fftsize)) { + if (!PyArg_ParseTuple (args, + "" AUBIO_NPY_SMPL_CHR AUBIO_NPY_SMPL_CHR AUBIO_NPY_SMPL_CHR, + &input, &samplerate, &fftsize)) { return NULL; }