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

Function _simplifyargs

numpy/f2py/crackfortran.py:684–690  ·  view source on GitHub ↗
(argsline)

Source from the content-addressed store, hash-verified

682 return (line, "")
683
684def _simplifyargs(argsline):
685 a = []
686 for n in markoutercomma(argsline).split('@,@'):
687 for r in '(),':
688 n = n.replace(r, '_')
689 a.append(n)
690 return ','.join(a)
691
692
693crackline_re_1 = re.compile(r'\s*(?P<result>\b[a-z]+\w*\b)\s*=.*', re.I)

Callers 1

cracklineFunction · 0.85

Calls 4

markoutercommaFunction · 0.85
splitMethod · 0.80
replaceMethod · 0.80
joinMethod · 0.80

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…