From 0bae15ac90f75f9da469356239bc59c928a60837 Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Thu, 1 Nov 2018 22:13:11 +0100 Subject: [PATCH] [tests] use np.loadtxt in utils --- python/tests/utils.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/python/tests/utils.py b/python/tests/utils.py index b0963fc4..b374fe5f 100644 --- a/python/tests/utils.py +++ b/python/tests/utils.py @@ -8,11 +8,8 @@ from tempfile import mkstemp 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) -- 2.11.0