(self, text, pos)
| 57 | |
| 58 | class _ItplError(ValueError): |
| 59 | def __init__(self, text, pos): |
| 60 | ValueError.__init__(self) |
| 61 | self.text = text |
| 62 | self.pos = pos |
| 63 | |
| 64 | def __str__(self): |
| 65 | return "unfinished expression in %s at char %d" % (repr(self.text), self.pos) |