The expression list in inheritance is not optional. Fixes #960448.

Will backport to 2.3.
This commit is contained in:
Martin v. Löwis 2004-06-02 12:59:59 +00:00
parent 477c85631a
commit 9c322fbe36
1 changed files with 1 additions and 1 deletions

View File

@ -412,7 +412,7 @@ A class definition defines a class object (see section~\ref{types}):
{"class" \token{classname} [\token{inheritance}] ":"
\token{suite}}
\production{inheritance}
{"(" [\token{expression_list}] ")"}
{"(" \token{expression_list} ")"}
\production{classname}
{\token{identifier}}
\end{productionlist}