(self, chunk)
| 1389 | self.markups.append([name, start_end]) |
| 1390 | |
| 1391 | def parse(self, chunk): |
| 1392 | if self.error is not None: return |
| 1393 | try: |
| 1394 | self._parse(chunk) |
| 1395 | except Exception as exc: |
| 1396 | self.error = exc |
| 1397 | |
| 1398 | |
| 1399 | class MPBytesIOProxy: |