shithub: aubio

Download patch

ref: db626228719ca87ea1ea86cd2d27c7f889d3e38d
parent: a9f16569444fa1b488f1c72e66f197f96132fda9
author: Paul Brossier <piem@piem.org>
date: Wed Oct 7 21:23:31 EDT 2009

tests/python: update imports

--- a/tests/python/src/pitch/pitchdetection.py
+++ b/tests/python/src/pitch/pitchdetection.py
@@ -1,6 +1,5 @@
-import unittest
-
-from aubio.aubiowrapper import *
+from template import aubio_unit_template
+from localaubio import *
 
 buf_size = 4096
 hop_size = 512
--- a/tests/python/src/spectral/fft.py
+++ b/tests/python/src/spectral/fft.py
@@ -1,8 +1,6 @@
-import math
-
 from template import aubio_unit_template
-
-from aubio.aubiowrapper import *
+from localaubio import *
+import math
 
 buf_size = 1024
 channels = 4
--- a/tests/python/src/spectral/phasevoc.py
+++ b/tests/python/src/spectral/phasevoc.py
@@ -1,6 +1,5 @@
-import unittest
-
-from aubio.aubiowrapper import *
+from template import aubio_unit_template
+from localaubio import *
 
 buf_size = 1024
 hop_size = 256
--- a/tests/python/src/temporal/zero_crossing_rate.py
+++ b/tests/python/src/temporal/zero_crossing_rate.py
@@ -1,6 +1,5 @@
-import unittest
-
-from aubio.aubiowrapper import *
+from template import aubio_unit_template
+from localaubio import *
 
 buf_size = 2048
 channels = 1
--- a/tests/python/src/utils/hist.py
+++ b/tests/python/src/utils/hist.py
@@ -1,8 +1,6 @@
-import unittest
-import random
-
 from template import aubio_unit_template
-from aubio.aubiowrapper import *
+from localaubio import *
+import random
 
 buf_size = 2048
 channels = 1
--- a/tests/python/src/utils/scale.py
+++ b/tests/python/src/utils/scale.py
@@ -1,7 +1,5 @@
-import unittest
-
 from template import aubio_unit_template
-from aubio.aubiowrapper import *
+from localaubio import *
 
 buf_size = 2000
 channels = 2