summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next/Core and Builtins
diff options
context:
space:
mode:
authorPablo Galindo <Pablogsal@gmail.com>2021-01-03 01:11:41 (GMT)
committerGitHub <noreply@github.com>2021-01-03 01:11:41 (GMT)
commitbd2728b1e8a99ba8f8c2d481f88aeb99b8b8360f (patch)
tree45e3fc389d9dee5e63556b49995961ee7e22b48b /Misc/NEWS.d/next/Core and Builtins
parent2ea320dddd553298038bb7d6789e50e199332f66 (diff)
downloadcpython-bd2728b1e8a99ba8f8c2d481f88aeb99b8b8360f.zip
cpython-bd2728b1e8a99ba8f8c2d481f88aeb99b8b8360f.tar.gz
cpython-bd2728b1e8a99ba8f8c2d481f88aeb99b8b8360f.tar.bz2
bpo-42806: Fix ast locations of f-strings inside parentheses (GH-24067)
Diffstat (limited to 'Misc/NEWS.d/next/Core and Builtins')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2021-01-03-00-20-38.bpo-42806.mLAobJ.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2021-01-03-00-20-38.bpo-42806.mLAobJ.rst b/Misc/NEWS.d/next/Core and Builtins/2021-01-03-00-20-38.bpo-42806.mLAobJ.rst
new file mode 100644
index 0000000..10314fd
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2021-01-03-00-20-38.bpo-42806.mLAobJ.rst
@@ -0,0 +1,2 @@
+Fix the column offsets for f-strings :mod:`ast` nodes surrounded by
+parentheses and for nodes that spawn multiple lines. Patch by Pablo Galindo.