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

Function getuseblocks

numpy/f2py/auxfuncs.py:930–936  ·  view source on GitHub ↗
(pymod)

Source from the content-addressed store, hash-verified

928 return name
929
930def getuseblocks(pymod):
931 all_uses = []
932 for inner in pymod['body']:
933 for modblock in inner['body']:
934 if modblock.get('use'):
935 all_uses.extend([x for x in modblock.get("use").keys() if "__" not in x])
936 return all_uses
937
938def process_f2cmap_dict(f2cmap_all, new_map, c2py_map, verbose=False):
939 """

Callers 2

buildhooksFunction · 0.85
buildhooksFunction · 0.85

Calls 2

getMethod · 0.45
keysMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…