From 11758834ba430d299e33cc42b0d81257f139451b Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Tue, 9 Feb 2016 15:35:00 +0100 Subject: [PATCH] python/lib/gen_pyobject.py: add sint_t --- python/lib/gen_pyobject.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/python/lib/gen_pyobject.py b/python/lib/gen_pyobject.py index ba8274e5..8c5e37f6 100644 --- a/python/lib/gen_pyobject.py +++ b/python/lib/gen_pyobject.py @@ -108,6 +108,7 @@ defaultsizes = { # default value for variables aubioinitvalue = { 'uint_t': 0, + 'sint_t': 0, 'smpl_t': 0, 'lsmp_t': 0., 'char_t*': 'NULL', @@ -137,6 +138,7 @@ aubiodefvalue = { # aubio to python aubio2pytypes = { 'uint_t': 'I', + 'sint_t': 'I', 'smpl_t': 'f', 'lsmp_t': 'd', 'fvec_t*': 'O', -- 2.11.0