diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2021-05-15 17:39:18 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-15 17:39:18 (GMT) |
commit | 1afaaf5a2dc901377bb17f6fbe0cff7bf3b797e3 (patch) | |
tree | 8077b1daccf483b10e82c9fb0e036a898fa48f7e /Misc | |
parent | a38db84122b4f664ee30b9ffd55ce87b7f4517ac (diff) | |
download | cpython-1afaaf5a2dc901377bb17f6fbe0cff7bf3b797e3.zip cpython-1afaaf5a2dc901377bb17f6fbe0cff7bf3b797e3.tar.gz cpython-1afaaf5a2dc901377bb17f6fbe0cff7bf3b797e3.tar.bz2 |
bpo-44143: Fix crash in the parser when raising tokenizer errors with an exception set (GH-26144) (GH-26148)
(cherry picked from commit 80b089179fa798c8ceaab2ff699c82499b2fcacd)
Co-authored-by: Pablo Galindo <Pablogsal@gmail.com>
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2021-05-15-17-30-57.bpo-44143.7UTS6H.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2021-05-15-17-30-57.bpo-44143.7UTS6H.rst b/Misc/NEWS.d/next/Core and Builtins/2021-05-15-17-30-57.bpo-44143.7UTS6H.rst new file mode 100644 index 0000000..a4e88e5 --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2021-05-15-17-30-57.bpo-44143.7UTS6H.rst @@ -0,0 +1,2 @@ +Fixed a crash in the parser that manifest when raising tokenizer errors when +an existing exception was present. Patch by Pablo Galindo. |