Changeset a159628
- Timestamp:
- Jan 8, 2017, 2:37:56 PM (8 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, sampler, yinfft+
- Children:
- c8c7aa6
- Parents:
- f5e9e3f
- Location:
- python
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
python/ext/aubiomodule.c
rf5e9e3f ra159628 5 5 // this dummy macro is used to convince windows that a string passed as -D flag 6 6 // is just that, a string, and not a double. 7 #define DEFINEDSTRING(x) #x 7 #define REDEFINESTRING(x) #x 8 #define DEFINEDSTRING(x) REDEFINESTRING(x) 8 9 9 10 static char aubio_module_doc[] = "Python module for the aubio library"; -
python/tests/test_aubio.py
rf5e9e3f ra159628 10 10 import aubio 11 11 12 def test_version(self): 13 """ test aubio.version """ 14 import aubio 15 self.assertEqual('0', aubio.version[0]) 16 12 17 if __name__ == '__main__': 13 18 main()
Note: See TracChangeset
for help on using the changeset viewer.