Changeset 9b23eb31 for interfaces/python/test_aubio.py
- Timestamp:
- Oct 6, 2009, 2:49:53 AM (15 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:
- f826349
- Parents:
- 998a8be
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
interfaces/python/test_aubio.py
r998a8be r9b23eb31 1 1 from numpy.testing import TestCase, run_module_suite 2 from numpy.testing import assert_equal as numpy_assert_equal2 from numpy.testing import assert_equal 3 3 from _aubio import * 4 4 from numpy import array 5 5 6 6 AUBIO_DO_CASTING = 0 7 8 def assert_equal(a, b):9 numpy_assert_equal(array(a),array(b))10 7 11 8 class aubiomodule_test_case(TestCase):
Note: See TracChangeset
for help on using the changeset viewer.