MCPcopy Create free account
hub / github.com/numpy/numpy / true_intent_list

Function true_intent_list

numpy/f2py/crackfortran.py:3379–3390  ·  view source on GitHub ↗
(var)

Source from the content-addressed store, hash-verified

3377
3378
3379def true_intent_list(var):
3380 lst = var['intent']
3381 ret = []
3382 for intent in lst:
3383 try:
3384 f = globals()['isintent_%s' % intent]
3385 except KeyError:
3386 pass
3387 else:
3388 if f(var):
3389 ret.append(intent)
3390 return ret
3391
3392
3393def vars2fortran(block, vars, args, tab='', as_interface=False):

Callers 1

vars2fortranFunction · 0.85

Calls 1

fFunction · 0.85

Tested by

no test coverage detected