summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bindings/t.py2
1 files changed, 1 insertions, 1 deletions
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()