(self, lineno, line)
| 314 | self.append(*args) |
| 315 | |
| 316 | def append(self, lineno, line): |
| 317 | self.errors.append((lineno, line)) |
| 318 | self.message += '\n\t[line %2d]: %s' % (lineno, repr(line)) |
| 319 | |
| 320 | def combine(self, others): |
| 321 | for other in others: |
no outgoing calls