shithub: aubio

Download patch

ref: 333eec1d3baef761a7a24c8bcaf650e2c0cabcf6
parent: ade36e60bf5e7041c3f8e2ddf4f507fb66e10d2e
author: Paul Brossier <piem@piem.org>
date: Mon Apr 18 19:23:27 EDT 2016

python/lib/generator.py: prepare for python3

--- a/python/lib/generator.py
+++ b/python/lib/generator.py
@@ -23,6 +23,7 @@
           i += 1
 
   typedefs = filter(lambda y: y.startswith ('typedef struct _aubio'), cpp_output)
+  typedefs = list(typedefs)
 
   cpp_objects = [a.split()[3][:-1] for a in typedefs]