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

Function containsderivedtypes

numpy/f2py/auxfuncs.py:576–583  ·  view source on GitHub ↗
(rout)

Source from the content-addressed store, hash-verified

574
575
576def containsderivedtypes(rout):
577 if hasderivedtypes(rout):
578 return 1
579 if hasbody(rout):
580 for b in rout['body']:
581 if hasderivedtypes(b):
582 return 1
583 return 0
584
585
586def containsmodule(block):

Callers 1

buildhooksFunction · 0.85

Calls 2

hasderivedtypesFunction · 0.85
hasbodyFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…