From effa4d926726616b7719745bb633d4dfd8e4744f Mon Sep 17 00:00:00 2001 From: Frederic Peters Date: Tue, 29 Apr 2008 12:01:26 +0000 Subject: [project @ fpeters@0d.be-20071005082424-d4y1kxyjhenlflsj] ignore get_type functions Original author: Frederic Peters Date: 2007-10-05 10:24:24.151000+02:00 --- bindings/t.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bindings') diff --git a/bindings/t.py b/bindings/t.py index f4a4c089..69a2e06c 100644 --- a/bindings/t.py +++ b/bindings/t.py @@ -161,7 +161,7 @@ def parse_header(header_file): line = line[:-1] + lines[i].lstrip() m = re.match(r'LASSO_EXPORT\s+([\w]+\*?)\s+(\*?\w+)\s*\((.*?)\)', line) - if m: + if m and not m.group(2).endswith('_get_type'): f = Function() binding.functions.append(f) return_type, function_name, args = m.groups() -- cgit