shithub: aubio

Download patch

ref: 0bae15ac90f75f9da469356239bc59c928a60837
parent: bb63c1904ceed9d0fd003539dd9fca6c0c280c59
author: Paul Brossier <piem@piem.org>
date: Thu Nov 1 18:13:11 EDT 2018

[tests] use np.loadtxt in utils

--- a/python/tests/utils.py
+++ b/python/tests/utils.py
@@ -8,11 +8,8 @@
 DEFAULT_SOUND = '22050Hz_5s_brownnoise.wav'
 
 def array_from_text_file(filename, dtype = 'float'):
-    filename = os.path.join(os.path.dirname(__file__), filename)
-    with open(filename) as f:
-        lines = f.readlines()
-    return np.array([line.split() for line in lines],
-            dtype = dtype)
+    realpathname = os.path.join(os.path.dirname(__file__), filename)
+    return np.loadtxt(realpathname, dtype = dtype)
 
 def list_all_sounds(rel_dir):
     datadir = os.path.join(os.path.dirname(__file__), rel_dir)