Issue #24136: Adjust f-strings doc for interable unpacking
This commit is contained in:
parent
99cb0cda15
commit
ed74e243c6
|
@ -619,7 +619,8 @@ for the contents of the string is:
|
|||
.. productionlist::
|
||||
f_string: (`literal_char` | "{{" | "}}" | `replacement_field`)*
|
||||
replacement_field: "{" `f_expression` ["!" `conversion`] [":" `format_spec`] "}"
|
||||
f_expression: `conditional_expression` ("," `conditional_expression`)* [","]
|
||||
f_expression: (`conditional_expression` | "*" `or_expr`)
|
||||
: ("," `conditional_expression` | "," "*" `or_expr`)* [","]
|
||||
: | `yield_expression`
|
||||
conversion: "s" | "r" | "a"
|
||||
format_spec: (`literal_char` | NULL | `replacement_field`)*
|
||||
|
|
Loading…
Reference in New Issue