summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMark Shannon <mark@hotpy.org>2022-03-03 10:38:27 (GMT)
committerGitHub <noreply@github.com>2022-03-03 10:38:27 (GMT)
commit751c9ed801ad1189272ca10f0749bfc9d49b5038 (patch)
treedb17f40d13eadfade31e3133463954c86fe9d6e2 /Misc
parent3c4abfab0d3e2a3b1e626a5eb185ad1f5436b532 (diff)
downloadcpython-751c9ed801ad1189272ca10f0749bfc9d49b5038.zip
cpython-751c9ed801ad1189272ca10f0749bfc9d49b5038.tar.gz
cpython-751c9ed801ad1189272ca10f0749bfc9d49b5038.tar.bz2
bpo-46891: Fix creating a new instance of a module subclass with slots (GH-31643)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2022-03-02-15-04-08.bpo-46891.aIAgTD.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2022-03-02-15-04-08.bpo-46891.aIAgTD.rst b/Misc/NEWS.d/next/Core and Builtins/2022-03-02-15-04-08.bpo-46891.aIAgTD.rst
new file mode 100644
index 0000000..6834b08
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2022-03-02-15-04-08.bpo-46891.aIAgTD.rst
@@ -0,0 +1,3 @@
+Fix bug introduced during 3.11alpha where subclasses of ``types.ModuleType``
+with ``__slots__`` were not initialized correctly, resulting in an
+interpreter crash.