diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2024-01-02 13:22:39 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-02 13:22:39 (GMT) |
commit | 1c381ec4edfa6364474fa795a93ed1cccb6df903 (patch) | |
tree | dfe16b94545826e1399114722f0e6aa329408f3c /Misc | |
parent | 9beb56594db36eab985f1fa05385eb34fae178ac (diff) | |
download | cpython-1c381ec4edfa6364474fa795a93ed1cccb6df903.zip cpython-1c381ec4edfa6364474fa795a93ed1cccb6df903.tar.gz cpython-1c381ec4edfa6364474fa795a93ed1cccb6df903.tar.bz2 |
[3.11] gh-113602: Bail out when the parser tries to override existing errors (GH-113607) (#113653)
gh-113602: Bail out when the parser tries to override existing errors (GH-113607)
(cherry picked from commit 9ed36d533ab8b256f0a589b5be6d7a2fdcf4aff2)
Signed-off-by: Pablo Galindo <pablogsal@gmail.com>
Co-authored-by: Pablo Galindo Salgado <Pablogsal@gmail.com>
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2024-01-01-00-07-02.gh-issue-113602.cWuTzk.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2024-01-01-00-07-02.gh-issue-113602.cWuTzk.rst b/Misc/NEWS.d/next/Core and Builtins/2024-01-01-00-07-02.gh-issue-113602.cWuTzk.rst new file mode 100644 index 0000000..5e06465 --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2024-01-01-00-07-02.gh-issue-113602.cWuTzk.rst @@ -0,0 +1,2 @@ +Fix an error that was causing the parser to try to overwrite existing errors +and crashing in the process. Patch by Pablo Galindo |