commit | 9c322fbe368ac572eb25051e13321b3481670777 | [log] [tgz] |
---|---|---|
author | Martin v. Löwis <martin@v.loewis.de> | Wed Jun 02 12:59:59 2004 +0000 |
committer | Martin v. Löwis <martin@v.loewis.de> | Wed Jun 02 12:59:59 2004 +0000 |
tree | f61b43f55c0445bbf110cefa06bf30247a945294 | |
parent | 477c85631a95d6f0ce49f8651bb73f2bfc950493 [diff] [blame] |
The expression list in inheritance is not optional. Fixes #960448. Will backport to 2.3.
diff --git a/Doc/ref/ref7.tex b/Doc/ref/ref7.tex index 4770dc9..80ddc33 100644 --- a/Doc/ref/ref7.tex +++ b/Doc/ref/ref7.tex
@@ -412,7 +412,7 @@ {"class" \token{classname} [\token{inheritance}] ":" \token{suite}} \production{inheritance} - {"(" [\token{expression_list}] ")"} + {"(" \token{expression_list} ")"} \production{classname} {\token{identifier}} \end{productionlist}