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

Function get_usedict

numpy/f2py/crackfortran.py:1993–1999  ·  view source on GitHub ↗
(block)

Source from the content-addressed store, hash-verified

1991
1992
1993def get_usedict(block):
1994 usedict = {}
1995 if 'parent_block' in block:
1996 usedict = get_usedict(block['parent_block'])
1997 if 'use' in block:
1998 usedict.update(block['use'])
1999 return usedict
2000
2001
2002def get_useparameters(block, param_map=None):

Callers 1

get_useparametersFunction · 0.85

Calls 1

updateMethod · 0.80

Tested by

no test coverage detected