Files
python-uncompyle6/test/simple_source/calls/01_positional.py
2024-07-10 13:31:39 -04:00

6 lines
171 B
Python

# Tests custom added grammar rule:
# expr ::= expr {expr}^n CALL_FUNCTION_n
# which in the specific case below is:
# expr ::= expr expr expr CALL_FUNCTION_2
max(1, 2)