Changeset 9e6695d for python/ext
- Timestamp:
- Mar 8, 2013, 3:52:01 AM (12 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:
- 1ee4033
- Parents:
- 90a8f2f
- Location:
- python/ext
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
python/ext/aubiomodule.c
r90a8f2f r9e6695d 165 165 166 166 // since this function does not return, we could return None 167 // return Py_None;167 //Py_RETURN_NONE; 168 168 // however it is convenient to return the modified vector 169 169 return (PyObject *) PyAubio_CFvecToArray(vec); -
python/ext/py-filter.c
r90a8f2f r9e6695d 100 100 return NULL; 101 101 } 102 return Py_None;102 Py_RETURN_NONE; 103 103 } 104 104 … … 118 118 return NULL; 119 119 } 120 return Py_None;120 Py_RETURN_NONE; 121 121 } 122 122 … … 136 136 return NULL; 137 137 } 138 return Py_None;138 Py_RETURN_NONE; 139 139 } 140 140 -
python/ext/py-filterbank.c
r90a8f2f r9e6695d 110 110 return NULL; 111 111 } 112 return Py_None;112 Py_RETURN_NONE; 113 113 } 114 114 … … 129 129 return NULL; 130 130 } 131 return Py_None;131 Py_RETURN_NONE; 132 132 } 133 133 … … 159 159 return NULL; 160 160 } 161 return Py_None;161 Py_RETURN_NONE; 162 162 } 163 163
Note: See TracChangeset
for help on using the changeset viewer.