Changeset 9b23815e for python/lib
- Timestamp:
- Oct 30, 2018, 1:19:53 PM (6 years ago)
- Branches:
- feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master
- Children:
- 07382d8
- Parents:
- 4bc10e2
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
python/lib/gen_code.py
r4bc10e2 r9b23815e 481 481 482 482 if (err > 0) {{ 483 PyErr_SetString (PyExc_ValueError, "error running aubio_{shortname}_set_{param}"); 483 if (PyErr_Occurred() == NULL) {{ 484 PyErr_SetString (PyExc_ValueError, "error running aubio_{shortname}_set_{param}"); 485 }} else {{ 486 // change the RuntimeError into ValueError 487 PyObject *type, *value, *traceback; 488 PyErr_Fetch(&type, &value, &traceback); 489 PyErr_Restore(PyExc_ValueError, value, traceback); 490 }} 484 491 return NULL; 485 492 }}
Note: See TracChangeset
for help on using the changeset viewer.