mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
Issue #24136: Adjust f-strings doc for interable unpacking
This commit is contained in:
parent
99cb0cda15
commit
ed74e243c6
1 changed files with 2 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue