(self, others)
| 318 | self.message += '\n\t[line %2d]: %s' % (lineno, repr(line)) |
| 319 | |
| 320 | def combine(self, others): |
| 321 | for other in others: |
| 322 | for error in other.errors: |
| 323 | self.append(*error) |
| 324 | return self |
| 325 | |
| 326 | @staticmethod |
| 327 | def _raise_all(exceptions: Iterable['ParsingError']): |