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

Function containsmodule

numpy/f2py/auxfuncs.py:586–594  ·  view source on GitHub ↗
(block)

Source from the content-addressed store, hash-verified

584
585
586def containsmodule(block):
587 if ismodule(block):
588 return 1
589 if not hasbody(block):
590 return 0
591 for b in block['body']:
592 if containsmodule(b):
593 return 1
594 return 0
595
596
597def hasbody(rout):

Callers

nothing calls this directly

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…