| 170 | return m.hexdigest()[:8] |
| 171 | |
| 172 | class 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 | |
| 181 | def skip_brackets(s, lbrac, rbrac): |
| 182 | count = 0 |
no outgoing calls
no test coverage detected
searching dependent graphs…