diff options
author | Pablo Galindo Salgado <Pablogsal@gmail.com> | 2022-12-07 13:52:05 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-07 13:52:05 (GMT) |
commit | 72cfe5b1b9ad1bbe9da38a5af605e5d03ad88147 (patch) | |
tree | d8c9df6a1732d0d14c4e91e1cc6d14a425b69a35 /Misc | |
parent | 3843973cfd5267018791facb77609aff0455074b (diff) | |
download | cpython-72cfe5b1b9ad1bbe9da38a5af605e5d03ad88147.zip cpython-72cfe5b1b9ad1bbe9da38a5af605e5d03ad88147.tar.gz cpython-72cfe5b1b9ad1bbe9da38a5af605e5d03ad88147.tar.bz2 |
[3.10] gh-100050: Fix an assertion error when raising unclosed parenthesis errors in the tokenizer (GH-100065) (#100073)
Automerge-Triggered-By: GH:pablogsal.
(cherry picked from commit 97e7004cfe48305bcd642c653b406dc7470e196d)
Co-authored-by: Pablo Galindo Salgado <Pablogsal@gmail.com>
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2022-12-06-22-24-01.gh-issue-100050.lcrPqQ.rst | 2 |
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 |