diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-10-05 14:07:25 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-05 14:07:25 (GMT) |
commit | 09ec8153c6480fd608ce6f981a050f515f1875c9 (patch) | |
tree | 38ea208d047e5484619ae55d37f7ee58b50cb8d3 /Misc/NEWS.d | |
parent | 7bfcfcf6565dcf609854a82a7976faa7f7446fea (diff) | |
download | cpython-09ec8153c6480fd608ce6f981a050f515f1875c9.zip cpython-09ec8153c6480fd608ce6f981a050f515f1875c9.tar.gz cpython-09ec8153c6480fd608ce6f981a050f515f1875c9.tar.bz2 |
[3.12] gh-110259: Fix f-strings with multiline expressions and format specs (GH-110271) (#110396)
gh-110259: Fix f-strings with multiline expressions and format specs (GH-110271)
(cherry picked from commit cc389ef627b2a486ab89d9a11245bef48224efb1)
Signed-off-by: Pablo Galindo <pablogsal@gmail.com>
Co-authored-by: Pablo Galindo Salgado <Pablogsal@gmail.com>
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2023-10-03-11-43-48.gh-issue-110259.ka93x5.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2023-10-03-11-43-48.gh-issue-110259.ka93x5.rst b/Misc/NEWS.d/next/Core and Builtins/2023-10-03-11-43-48.gh-issue-110259.ka93x5.rst new file mode 100644 index 0000000..55c743d --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2023-10-03-11-43-48.gh-issue-110259.ka93x5.rst @@ -0,0 +1,3 @@ +Correctly identify the format spec in f-strings (with single or triple +quotes) that have multiple lines in the expression part and include a +formatting spec. Patch by Pablo Galindo |