From a1e214a1ed23943702e880b18f5c03c9a86b8958 Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Tue, 15 Aug 2000 17:54:49 +0000 Subject: [PATCH] Thomas Wouters : Update the grammar to reflect the most recent changes to list comprehensions. --- Doc/ref/ref5.tex | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Doc/ref/ref5.tex b/Doc/ref/ref5.tex index 6b699bcc080..5d7a4c6aaa5 100644 --- a/Doc/ref/ref5.tex +++ b/Doc/ref/ref5.tex @@ -152,7 +152,8 @@ A list display is a possibly empty series of expressions enclosed in square brackets: \begin{verbatim} -list_display: "[" [expression_list [list_iter]] "]" +list_display: "[" [listmaker] "]" +listmaker: expression_list ( list_iter | ( "," expression)* [","] ) list_iter: list_for | list_if list_for: "for" expression_list "in" testlist [list_iter] list_if: "if" test [list_iter]