mirror of
https://github.com/python/cpython.git
synced 2025-11-01 18:51:43 +00:00
Issue #23921: Standardized documentation whitespace formatting.
Original patch by James Edwards.
This commit is contained in:
parent
387235085c
commit
dba903993a
63 changed files with 445 additions and 409 deletions
|
|
@ -395,14 +395,14 @@ equivalent to the following Python code::
|
|||
continue # Skip this element
|
||||
for expr2 in sequence2:
|
||||
if not (condition2):
|
||||
continue # Skip this element
|
||||
continue # Skip this element
|
||||
...
|
||||
for exprN in sequenceN:
|
||||
if not (conditionN):
|
||||
continue # Skip this element
|
||||
if not (conditionN):
|
||||
continue # Skip this element
|
||||
|
||||
# Output the value of
|
||||
# the expression.
|
||||
# Output the value of
|
||||
# the expression.
|
||||
|
||||
This means that when there are multiple ``for...in`` clauses but no ``if``
|
||||
clauses, the length of the resulting output will be equal to the product of the
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue