summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2022-07-16 21:06:33 (GMT)
committerGitHub <noreply@github.com>2022-07-16 21:06:33 (GMT)
commit964431eaeb1905a95cb1bd745d0b9c0052db4b94 (patch)
treee1c48b9a5118f2e4324f05355690cd6487c625da /Misc
parent3781d1a45815b5f4455491efd036babc084101b3 (diff)
downloadcpython-964431eaeb1905a95cb1bd745d0b9c0052db4b94.zip
cpython-964431eaeb1905a95cb1bd745d0b9c0052db4b94.tar.gz
cpython-964431eaeb1905a95cb1bd745d0b9c0052db4b94.tar.bz2
gh-94869: Fix the location in some expressions for multi-line f-string ast nodes (GH-94895) (#94911)
(cherry picked from commit 2e9da8e3522764d09f1d6054a2be567e91a30812) Co-authored-by: Pablo Galindo Salgado <Pablogsal@gmail.com> Co-authored-by: Pablo Galindo Salgado <Pablogsal@gmail.com>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2022-07-16-08-14-17.gh-issue-94869.eRwMsX.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2022-07-16-08-14-17.gh-issue-94869.eRwMsX.rst b/Misc/NEWS.d/next/Core and Builtins/2022-07-16-08-14-17.gh-issue-94869.eRwMsX.rst
new file mode 100644
index 0000000..2ccf91b
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2022-07-16-08-14-17.gh-issue-94869.eRwMsX.rst
@@ -0,0 +1,2 @@
+Fix the column offsets for some expressions in multi-line f-strings
+:mod:`ast` nodes. Patch by Pablo Galindo.