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

Function isstringfunction

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

Source from the content-addressed store, hash-verified

378
379
380def isstringfunction(rout):
381 if not isfunction(rout):
382 return 0
383 if 'result' in rout:
384 a = rout['result']
385 else:
386 a = rout['name']
387 if a in rout['vars']:
388 return isstring(rout['vars'][a])
389 return 0
390
391
392def hasexternals(rout):

Callers 3

getstrlengthFunction · 0.85
routsign2mapFunction · 0.85
cb_routsign2mapFunction · 0.85

Calls 2

isstringFunction · 0.85
isfunctionFunction · 0.70

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…