Hello list,
The following works:
import pyparsing as p
t = """
{
( "{")
}
"""
nE = p.nestedExpr("{","}",ignoreExpr=p.quotedString)
r = nE.parseString(t)
But after removing one space between the ( and the ", it crashes:
import pyparsing as p
t = """
{
("{")
}
"""
nE = p.nestedExpr("{","}",ignoreExpr=p.quotedString)
r = nE.parseString(t)
This looks like a bug to me?
Best regards,
Stefaan.
|