Changeset 08d07ce for python/lib/gen_code.py
- Timestamp:
- Jun 29, 2019, 1:14:08 PM (4 years ago)
- Branches:
- feature/cnn, feature/crepe, feature/timestretch, fix/ffmpeg5, master
- Children:
- 3a83821
- Parents:
- 9279ba0 (diff), 2244f00 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
python/lib/gen_code.py
r9279ba0 r08d07ce 524 524 PyObject *type, *value, *traceback; 525 525 PyErr_Fetch(&type, &value, &traceback); 526 PyErr_Restore(PyExc_ValueError, value, traceback); 526 Py_XDECREF(type); 527 type = PyExc_ValueError; 528 Py_XINCREF(type); 529 PyErr_Restore(type, value, traceback); 527 530 }} 528 531 return NULL;
Note: See TracChangeset
for help on using the changeset viewer.