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

Function hasassumedshape

numpy/f2py/auxfuncs.py:302–310  ·  view source on GitHub ↗
(rout)

Source from the content-addressed store, hash-verified

300
301
302def hasassumedshape(rout):
303 if rout.get('hasassumedshape'):
304 return True
305 for a in rout['args']:
306 for d in rout['vars'].get(a, {}).get('dimension', []):
307 if d == ':':
308 rout['hasassumedshape'] = True
309 return True
310 return False
311
312
313def requiresf90wrapper(rout):

Callers 2

issubroutine_wrapFunction · 0.85
requiresf90wrapperFunction · 0.85

Calls 1

getMethod · 0.45

Tested by

no test coverage detected