Skip to content

Commit 9af4d49

Browse files
authored
Update compound_stmts.rst
1 parent a4839cb commit 9af4d49

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Doc/reference/compound_stmts.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ 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 :token:`~python-grammar:starred_expression_list` expression is evaluated once;
160+
The :token:`~python-grammar:starred_expression_list` expression is evaluated once;
161161
it should yield an :term:`iterable` object. An :term:`iterator` is created for that iterable.
162162
The first item provided by the iterator is then assigned to the target list using the standard
163163
rules for assignments (see :ref:`assignment`), and the suite is executed. This

0 commit comments

Comments
 (0)