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

Function getargs

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

Source from the content-addressed store, hash-verified

748
749
750def getargs(rout):
751 sortargs, args = [], []
752 if 'args' in rout:
753 args = rout['args']
754 if 'sortvars' in rout:
755 for a in rout['sortvars']:
756 if a in args:
757 sortargs.append(a)
758 for a in args:
759 if a not in sortargs:
760 sortargs.append(a)
761 else:
762 sortargs = rout['args']
763 return args, sortargs
764
765
766def getargs2(rout):

Callers 1

buildcallbackFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…