Files
python-uncompyle6/test/simple_source/calls/01_positional.py
2015-12-27 16:50:45 -05:00

6 lines
170 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
max(1, 2)