diff options
author | Pablo Galindo Salgado <Pablogsal@gmail.com> | 2021-12-12 07:06:50 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-12 07:06:50 (GMT) |
commit | 4325a766f5f603ef6dfb8c4d5798e5e73cb5efd5 (patch) | |
tree | af6a6984dcbce46cad39d8d3fc669909cb36ffc9 /Misc/NEWS.d | |
parent | 59435eea08d30796174552c0ca03c59b41adf8a5 (diff) | |
download | cpython-4325a766f5f603ef6dfb8c4d5798e5e73cb5efd5.zip cpython-4325a766f5f603ef6dfb8c4d5798e5e73cb5efd5.tar.gz cpython-4325a766f5f603ef6dfb8c4d5798e5e73cb5efd5.tar.bz2 |
bpo-46054: Fix parsing error when parsing non-utf8 characters in source files (GH-30068)
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2021-12-12-05-30-21.bpo-46054.2P-foG.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2021-12-12-05-30-21.bpo-46054.2P-foG.rst b/Misc/NEWS.d/next/Core and Builtins/2021-12-12-05-30-21.bpo-46054.2P-foG.rst new file mode 100644 index 0000000..6ca91f0 --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2021-12-12-05-30-21.bpo-46054.2P-foG.rst @@ -0,0 +1,2 @@ +Fix parser error when parsing non-utf8 characters in source files. Patch by +Pablo Galindo. |