Changes in python/ext/ufuncs.c [4a67c12:a138975]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
python/ext/ufuncs.c
r4a67c12 ra138975 85 85 { 86 86 int err = 0; 87 PyObject *dict, *f, *g, *h; 87 88 88 89 err = _import_umath (); … … 92 93 } 93 94 94 PyObject *f, *dict;95 95 dict = PyModule_GetDict(m); 96 96 f = PyUFunc_FromFuncAndData(Py_aubio_unary_functions, Py_unwrap2pi_data, Py_aubio_unary_types, … … 100 100 Py_DECREF(f); 101 101 102 PyObject *g;103 102 g = PyUFunc_FromFuncAndData(Py_aubio_unary_functions, Py_freqtomidi_data, Py_aubio_unary_types, 104 103 Py_aubio_unary_n_types, Py_aubio_unary_n_inputs, Py_aubio_unary_n_outputs, … … 107 106 Py_DECREF(g); 108 107 109 PyObject *h;110 108 h = PyUFunc_FromFuncAndData(Py_aubio_unary_functions, Py_miditofreq_data, Py_aubio_unary_types, 111 109 Py_aubio_unary_n_types, Py_aubio_unary_n_inputs, Py_aubio_unary_n_outputs,
Note: See TracChangeset
for help on using the changeset viewer.