Files
python-uncompyle6/test/simple_source/call_arguments/positional.py
2015-12-21 12:34:19 -05:00

6 lines
168 B
Python

# Tests custom added grammar rule:
# expr ::= expr {expr}^n CALL_FUNCTION_n
# which in the specifc case below is:
# expr ::= expr expr expr CALL_FUNCTION_2
a(b, c)