I have the following snippet with recursive statement from a pyparsing parser:
def parse_query(querystr):
# <<other parsing stuff>>
queryexpression = querycondition + ZeroOrMore(Word("and") + querycondition)
try:
return queryexpression.parseString(querystr)
except ParseException as e:
logger.debug("Error parsing '{0}': \n {1}".format(querystr, e))
return None
when I feed this the query:
tokens = parse_query("HR:EE > -28.9 and BL:AA = 0 THISISNOTAND KLAS:TT eq true")
print(tokens)
it yields:
[['HR', ':', 'EE', '>', '-28.9'], 'and', ['BL', ':', 'AA', '=', '0']]
and just silently skips the last condition. No Exception thrown.
How do I catch the error in this string?
ZeroOrMoreimplies iteration, not recursion. Neither reference toqueryconditioninqueryexpressionis recursive, unless aqueryconditioncan (possibly indirectly) contain aqueryexpression. – Karl Knechtel Nov 3 '11 at 14:15