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

Class ParseError

numpy/core/code_generators/genapi.py:166–173  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

164 return m.hexdigest()[:8]
165
166class ParseError(Exception):
167 def __init__(self, filename, lineno, msg):
168 self.filename = filename
169 self.lineno = lineno
170 self.msg = msg
171
172 def __str__(self):
173 return '%s:%s:%s' % (self.filename, self.lineno, self.msg)
174
175def skip_brackets(s, lbrac, rbrac):
176 count = 0

Callers 1

find_functionsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected