From: Martin v. Löwis Date: Wed, 2 Jun 2004 13:00:32 +0000 (+0000) Subject: The expression list in inheritance is not optional. Fixes #960448. X-Git-Tag: v2.3.5c1~235 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=03843437392be50a2a0f4b4ab927b96255d75516;p=thirdparty%2FPython%2Fcpython.git The expression list in inheritance is not optional. Fixes #960448. --- diff --git a/Doc/ref/ref7.tex b/Doc/ref/ref7.tex index 346dce07c28f..1c6d3691a918 100644 --- a/Doc/ref/ref7.tex +++ b/Doc/ref/ref7.tex @@ -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}