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

Class ParseError

numpy/_core/code_generators/genapi.py:172–179  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

170 return m.hexdigest()[:8]
171
172class ParseError(Exception):
173 def __init__(self, filename, lineno, msg):
174 self.filename = filename
175 self.lineno = lineno
176 self.msg = msg
177
178 def __str__(self):
179 return f'{self.filename}:{self.lineno}:{self.msg}'
180
181def skip_brackets(s, lbrac, rbrac):
182 count = 0

Callers 1

find_functionsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…