summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorPablo Galindo Salgado <Pablogsal@gmail.com>2021-12-12 07:06:50 (GMT)
committerGitHub <noreply@github.com>2021-12-12 07:06:50 (GMT)
commit4325a766f5f603ef6dfb8c4d5798e5e73cb5efd5 (patch)
treeaf6a6984dcbce46cad39d8d3fc669909cb36ffc9 /Misc/NEWS.d
parent59435eea08d30796174552c0ca03c59b41adf8a5 (diff)
downloadcpython-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.rst2
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.