From 074712112b73bf2adf56c8f031c7789b6cfd290f Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Tue, 18 Jun 2002 18:42:01 +0000 Subject: [PATCH] Played contortionist games with the argument_list production so it might be easier to understand. This relates to SF bug #493243, which will be closed. --- Doc/ref/ref5.tex | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Doc/ref/ref5.tex b/Doc/ref/ref5.tex index bcd1f262cc3..2a49ebd5bb0 100644 --- a/Doc/ref/ref5.tex +++ b/Doc/ref/ref5.tex @@ -422,10 +422,10 @@ series of arguments: \production{call} {\token{primary} "(" [\token{argument_list} [","]] ")"} \production{argument_list} - {\token{positional_arguments} ["," \token{keyword_arguments}} - \productioncont{ ["," "*" \token{expression} ["," "**" \token{expression}]]]} - \productioncont{| \token{keyword_arguments} ["," "*" \token{expression}} - \productioncont{ ["," "**" \token{expression}]]} + {\token{positional_arguments} ["," \token{keyword_arguments} + ["," "*" \token{expression} ["," "**" \token{expression}]]]} + \productioncont{| \token{keyword_arguments} ["," "*" \token{expression} + ["," "**" \token{expression}]]} \productioncont{| "*" \token{expression} ["," "**" \token{expression}]} \productioncont{| "**" \token{expression}} \production{positional_arguments}