MCPcopy Index your code
hub / github.com/numpy/numpy / get_usedict

Function get_usedict

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

Source from the content-addressed store, hash-verified

1964
1965
1966def get_usedict(block):
1967 usedict = {}
1968 if 'parent_block' in block:
1969 usedict = get_usedict(block['parent_block'])
1970 if 'use' in block:
1971 usedict.update(block['use'])
1972 return usedict
1973
1974
1975def get_useparameters(block, param_map=None):

Callers 1

get_useparametersFunction · 0.85

Calls 1

updateMethod · 0.80

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…