File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -157,8 +157,8 @@ The :keyword:`for` statement is used to iterate over the elements of a sequence
157157 for_stmt: "for" `target_list ` "in" `starred_expression_list ` ":" `suite `
158158 : ["else" ":" `suite `]
159159
160- The `` starred_expression_list `` expression is evaluated once; it should yield an
161- :term: `iterable ` object. An :term: `iterator ` is created for that iterable.
160+ The :token: ` ~python-grammar:star_expressions ` expression is evaluated once; it should
161+ yield an :term: `iterable ` object. An :term: `iterator ` is created for that iterable.
162162The first item provided
163163by the iterator is then assigned to the target list using the standard
164164rules for assignments (see :ref: `assignment `), and the suite is executed. This
You can’t perform that action at this time.
0 commit comments