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

Function findf90modules

numpy/f2py/f90mod_rules.py:28–39  ·  view source on GitHub ↗
(m)

Source from the content-addressed store, hash-verified

26
27
28def findf90modules(m):
29 if ismodule(m):
30 return [m]
31 if not hasbody(m):
32 return []
33 ret = []
34 for b in m['body']:
35 if ismodule(b):
36 ret.append(b)
37 else:
38 ret = ret + findf90modules(b)
39 return ret
40
41
42fgetdims1 = f"""\

Callers 1

buildhooksFunction · 0.85

Calls 2

ismoduleFunction · 0.85
hasbodyFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…