[ 1207501 ] Issue in grammar

We didn't define dotted_name in the pseudo-grammar in the reference
docs.  Backport candidate.
This commit is contained in:
Michael W. Hudson 2005-05-26 07:58:22 +00:00
parent b141cd03a1
commit 2f475a7bc8

View file

@ -323,6 +323,8 @@ section~\ref{types}):
{\token{decorator}+}
\production{decorator}
{"@" \token{dotted_name} ["(" [\token{argument_list} [","]] ")"] NEWLINE}
\production{dotted_name}
{\token{identifier} ("." \token{identifier})*}
\production{parameter_list}
{(\token{defparameter} ",")*}
\productioncont{(~~"*" \token{identifier} [, "**" \token{identifier}]}