MCPcopy Create free account
hub / github.com/numpy/numpy / hasresultnote

Function hasresultnote

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

Source from the content-addressed store, hash-verified

533
534
535def hasresultnote(rout):
536 if not isfunction(rout):
537 return 0
538 if 'result' in rout:
539 a = rout['result']
540 else:
541 a = rout['name']
542 if a in rout['vars']:
543 return hasnote(rout['vars'][a])
544 return 0
545
546
547def hascommon(rout):

Callers 1

routsign2mapFunction · 0.85

Calls 2

hasnoteFunction · 0.85
isfunctionFunction · 0.70

Tested by

no test coverage detected