(rout)
| 76 | return vardef |
| 77 | |
| 78 | def useiso_c_binding(rout): |
| 79 | useisoc = False |
| 80 | for value in rout['vars'].values(): |
| 81 | kind_value = value.get('kindselector', {}).get('kind') |
| 82 | if kind_value in isoc_kindmap: |
| 83 | return True |
| 84 | return useisoc |
| 85 | |
| 86 | def createfuncwrapper(rout, signature=0): |
| 87 | assert isfunction(rout) |
no test coverage detected
searching dependent graphs…