summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorPablo Galindo Salgado <Pablogsal@gmail.com>2022-12-06 23:09:56 (GMT)
committerGitHub <noreply@github.com>2022-12-06 23:09:56 (GMT)
commit97e7004cfe48305bcd642c653b406dc7470e196d (patch)
tree7cbdfd5e01f133d61f21d66d5add469968a452f5 /Misc
parentabbe4482ab914d6da8b1678ad46174cb875ed7f6 (diff)
downloadcpython-97e7004cfe48305bcd642c653b406dc7470e196d.zip
cpython-97e7004cfe48305bcd642c653b406dc7470e196d.tar.gz
cpython-97e7004cfe48305bcd642c653b406dc7470e196d.tar.bz2
gh-100050: Fix an assertion error when raising unclosed parenthesis errors in the tokenizer (GH-100065)
Automerge-Triggered-By: GH:pablogsal
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2022-12-06-22-24-01.gh-issue-100050.lcrPqQ.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2022-12-06-22-24-01.gh-issue-100050.lcrPqQ.rst b/Misc/NEWS.d/next/Core and Builtins/2022-12-06-22-24-01.gh-issue-100050.lcrPqQ.rst
new file mode 100644
index 0000000..8e7c72d
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2022-12-06-22-24-01.gh-issue-100050.lcrPqQ.rst
@@ -0,0 +1,2 @@
+Honor existing errors obtained when searching for mismatching parentheses in
+the tokenizer. Patch by Pablo Galindo