aboutsummaryrefslogtreecommitdiff
path: root/Misc
diff options
context:
space:
mode:
authorPetr Viktorin <encukou@gmail.com>2022-02-02 16:57:51 +0100
committerGitHub <noreply@github.com>2022-02-02 07:57:51 -0800
commit0ef08530124c5ca13a9394f4ac18bee8e6c66409 (patch)
treeddb496b55243ef3f207bb6fdc744fe84d517196e /Misc
parent0d05da1fbf39f32d2c22a1f3702f40f916997b60 (diff)
downloadcpython3-0ef08530124c5ca13a9394f4ac18bee8e6c66409.tar.gz
bpo-46433: _PyType_GetModuleByDef: handle static types in MRO (GH-30696)
Automerge-Triggered-By: GH:encukou
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/C API/2022-01-19-16-51-54.bpo-46433.Er9ApS.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/C API/2022-01-19-16-51-54.bpo-46433.Er9ApS.rst b/Misc/NEWS.d/next/C API/2022-01-19-16-51-54.bpo-46433.Er9ApS.rst
new file mode 100644
index 0000000000..e1987c4536
--- /dev/null
+++ b/Misc/NEWS.d/next/C API/2022-01-19-16-51-54.bpo-46433.Er9ApS.rst
@@ -0,0 +1,2 @@
+The internal function _PyType_GetModuleByDef now correctly handles
+inheritance patterns involving static types.