diff options
author | Pablo Galindo Salgado <Pablogsal@gmail.com> | 2022-03-26 18:26:05 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-26 18:26:05 (GMT) |
commit | 27ee43183437c473725eba00def0ea7647688926 (patch) | |
tree | 3606c5cfd8e3420cf13b0b3c5f6374e5a2b5513f /Misc | |
parent | 48b3ae9e29545891bece874b4c0c0e394fe0f048 (diff) | |
download | cpython-27ee43183437c473725eba00def0ea7647688926.zip cpython-27ee43183437c473725eba00def0ea7647688926.tar.gz cpython-27ee43183437c473725eba00def0ea7647688926.tar.bz2 |
[3.10] bpo-47117: Don't crash if we fail to decode characters when the tokenizer buffers are uninitialized (GH-32129) (GH-32130)
Automerge-Triggered-By: GH:pablogsal.
(cherry picked from commit 26cca8067bf5306e372c0e90036d832c5021fd90)
Co-authored-by: Pablo Galindo Salgado <Pablogsal@gmail.com>
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2022-03-26-15-45-57.bpo-47117.60W6GQ.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2022-03-26-15-45-57.bpo-47117.60W6GQ.rst b/Misc/NEWS.d/next/Core and Builtins/2022-03-26-15-45-57.bpo-47117.60W6GQ.rst new file mode 100644 index 0000000..5098ed8 --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2022-03-26-15-45-57.bpo-47117.60W6GQ.rst @@ -0,0 +1,2 @@ +Fix a crash if we fail to decode characters in interactive mode if the +tokenizer buffers are uninitialized. Patch by Pablo Galindo. |