summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorChristian Heimes <christian@python.org>2022-03-31 15:14:50 (GMT)
committerGitHub <noreply@github.com>2022-03-31 15:14:50 (GMT)
commit44e915028d75f7cef141aa1aada962465a5907d6 (patch)
tree7413142bf87102c1d8113bb730ac8b929b989eeb /Misc
parent5458b7e39eb41b146c650b76e04ac67213138a82 (diff)
downloadcpython-44e915028d75f7cef141aa1aada962465a5907d6.zip
cpython-44e915028d75f7cef141aa1aada962465a5907d6.tar.gz
cpython-44e915028d75f7cef141aa1aada962465a5907d6.tar.bz2
bpo-47182: Fix crash by named unicode characters after interpreter reinitialization (GH-32212)
Automerge-Triggered-By: GH:tiran
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2022-03-31-15-37-02.bpo-47182.e_4SsC.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2022-03-31-15-37-02.bpo-47182.e_4SsC.rst b/Misc/NEWS.d/next/Core and Builtins/2022-03-31-15-37-02.bpo-47182.e_4SsC.rst
new file mode 100644
index 0000000..08036bc
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2022-03-31-15-37-02.bpo-47182.e_4SsC.rst
@@ -0,0 +1,2 @@
+Fix a crash when using a named unicode character like ``"\N{digit nine}"``
+after the main interpreter has been initialized a second time.