I\'m trying to use pyparsing to parse function calls in the form:
pyparsing
f(x, y)
That\'s easy. But since it\'s a recursive-descent p
The definition of arg should be arranged with the item that starts with another at the left, so it is matched preferentially:
arg
arg = expression | identifier | integer