Skip to content

Commit

Permalink
[3.12] pythongh-125832: Clarify comment for inlined comprehensions as…
Browse files Browse the repository at this point in the history
… per PEP-709 (pythongh-126322)

* Fix comprehensions comment to inlined by pep 709

* Update spacing

Co-authored-by: RUANG (James Roy) <[email protected]>

* Add reference to PEP 709

---------

Co-authored-by: Carol Willing <[email protected]>
Co-authored-by: RUANG (James Roy) <[email protected]>
  • Loading branch information
3 people authored and corona10 committed Nov 3, 2024
1 parent f4bc64d commit c7a3bbe
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions Python/compile.c
Original file line number Diff line number Diff line change
Expand Up @@ -5190,10 +5190,12 @@ compiler_call_helper(struct compiler *c, location loc,
return SUCCESS;
}


/* List and set comprehensions and generator expressions work by creating a
nested function to perform the actual iteration. This means that the
iteration variables don't leak into the current scope.
/* List and set comprehensions work by being inlined at the location where
they are defined. The isolation of iteration variables is provided by
pushing/popping clashing locals on the stack. Generator expressions work
by creating a nested function to perform the actual iteration.
This means that the iteration variables don't leak into the current scope.
See https://peps.python.org/pep-0709/ for additional information.
The defined function is called immediately following its definition, with the
result of that call being the result of the expression.
The LC/SC version returns the populated container, while the GE version is
Expand Down

0 comments on commit c7a3bbe

Please sign in to comment.