Commit 43410d8c authored by Igor Dejanovic's avatar Igor Dejanovic

Better error reporting on NoMatch exception.

parent 429fc379
...@@ -55,6 +55,10 @@ class NoMatch(Exception): ...@@ -55,6 +55,10 @@ class NoMatch(Exception):
# By default when NoMatch is thrown we will go up the Parse Model Tree. # By default when NoMatch is thrown we will go up the Parse Model Tree.
self._up = True self._up = True
def __str__(self):
return "Expected %s at position %s." % (self.value,
str(self.parser.pos_to_linecol(self.position)))
def flatten(_iterable): def flatten(_iterable):
'''Flattening of python iterables.''' '''Flattening of python iterables.'''
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment