summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorPablo Galindo Salgado <Pablogsal@gmail.com>2021-12-11 21:28:24 (GMT)
committerGitHub <noreply@github.com>2021-12-11 21:28:24 (GMT)
commit59435eea08d30796174552c0ca03c59b41adf8a5 (patch)
treed5f0958487ccbc0e4d6b7bccf9ee418bbb34f817 /Misc
parente029c53e1a408b89a4e3edf30a9b38b094f9c880 (diff)
downloadcpython-59435eea08d30796174552c0ca03c59b41adf8a5.zip
cpython-59435eea08d30796174552c0ca03c59b41adf8a5.tar.gz
cpython-59435eea08d30796174552c0ca03c59b41adf8a5.tar.bz2
bpo-46042: Improve SyntaxError locations in the symbol table (GH-30059)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2021-12-11-17-40-34.bpo-46042.aqYxku.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2021-12-11-17-40-34.bpo-46042.aqYxku.rst b/Misc/NEWS.d/next/Core and Builtins/2021-12-11-17-40-34.bpo-46042.aqYxku.rst
new file mode 100644
index 0000000..7a302bc
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2021-12-11-17-40-34.bpo-46042.aqYxku.rst
@@ -0,0 +1,2 @@
+Improve the location of the caret in :exc:`SyntaxError` exceptions emitted
+by the symbol table. Patch by Pablo Galindo.