diff options
author | Victor Stinner <vstinner@python.org> | 2022-01-27 23:39:52 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-27 23:39:52 (GMT) |
commit | 18ea973c21ee4a6adc26be41027881043fa498eb (patch) | |
tree | 4d9f76fd0c776453372d81c83f48a6fc8cfab6ce /Misc/NEWS.d | |
parent | 0575551f69ba9c999835bfb176a543d468083c03 (diff) | |
download | cpython-18ea973c21ee4a6adc26be41027881043fa498eb.zip cpython-18ea973c21ee4a6adc26be41027881043fa498eb.tar.gz cpython-18ea973c21ee4a6adc26be41027881043fa498eb.tar.bz2 |
bpo-40170: Remove PyHeapType_GET_MEMBERS() macro (GH-30942)
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.
Rename PyHeapType_GET_MEMBERS() to _PyHeapType_GET_MEMBERS() and move
it to the internal C API.
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/C API/2022-01-27-02-51-22.bpo-40170.uPolek.rst | 4 |
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 0000000..6b185f0 --- /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. + |