aboutsummaryrefslogtreecommitdiff
path: root/Misc/NEWS.d/next/C API/2022-01-27-02-51-22.bpo-40170.uPolek.rst
diff options
context:
space:
mode:
Diffstat (limited to 'Misc/NEWS.d/next/C API/2022-01-27-02-51-22.bpo-40170.uPolek.rst')
-rw-r--r--Misc/NEWS.d/next/C API/2022-01-27-02-51-22.bpo-40170.uPolek.rst4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/C API/2022-01-27-02-51-22.bpo-40170.uPolek.rst b/Misc/NEWS.d/next/C API/2022-01-27-02-51-22.bpo-40170.uPolek.rst
new file mode 100644
index 0000000000..6b185f0284
--- /dev/null
+++ b/Misc/NEWS.d/next/C API/2022-01-27-02-51-22.bpo-40170.uPolek.rst
@@ -0,0 +1,4 @@
+Remove the ``PyHeapType_GET_MEMBERS()`` macro. It was exposed in the public C
+API by mistake, it must only be used by Python internally. Use the
+``PyTypeObject.tp_members`` member instead. Patch by Victor Stinner.
+