Changeset a2ab20a
- Timestamp:
- May 14, 2016, 5:25:34 AM (9 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, pitchshift, sampler, timestretch, yinfft+
- Children:
- 2f4d9b7
- Parents:
- 3865924
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
python/ext/py-source.c
r3865924 ra2ab20a 252 252 uint_t err = 0; 253 253 254 uint_t position;254 int position; 255 255 if (!PyArg_ParseTuple (args, "I", &position)) { 256 return NULL; 257 } 258 259 if (position < 0) { 260 PyErr_Format(PyExc_ValueError, 261 "error when seeking in source: can not seek to negative value %d", 262 position); 256 263 return NULL; 257 264 }
Note: See TracChangeset
for help on using the changeset viewer.