shithub: aubio

Download patch

ref: 043c48cb5d577fec7b7654c230f0058a0087fd34
parent: c965b3370fa327e0f4bebba6f7d2304f55411691
author: Paul Brossier <piem@piem.org>
date: Wed Mar 6 10:39:47 EST 2013

tests/test_mathutils.py: can be TypeError or NotImplementedError

--- a/python/tests/test_mathutils.py
+++ b/python/tests/test_mathutils.py
@@ -29,7 +29,7 @@
 
         try:
             print unwrap2pi(["23.","24.",25.])
-        except TypeError:
+        except Exception, e:
             pass
 
     def test_unwrap2pi_takes_fvec(self):