summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2024-06-18 14:28:48 (GMT)
committerGitHub <noreply@github.com>2024-06-18 14:28:48 (GMT)
commit16f8e22e7c681d8e8184048ed1bf927d33e11758 (patch)
tree372790588b45c65c63dbb3a16e7cc64911bd8ab2 /Misc/NEWS.d
parente8752d7b80775ec2a348cd4bf38cbe26a4a07615 (diff)
downloadcpython-16f8e22e7c681d8e8184048ed1bf927d33e11758.zip
cpython-16f8e22e7c681d8e8184048ed1bf927d33e11758.tar.gz
cpython-16f8e22e7c681d8e8184048ed1bf927d33e11758.tar.bz2
gh-120600: Make Py_TYPE() opaque in limited C API 3.14 (#120601)
In the limited C API 3.14 and newer, Py_TYPE() is now implemented as an opaque function call to hide implementation details.
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/C API/2024-06-16-22-58-47.gh-issue-120600.TJdf0w.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/C API/2024-06-16-22-58-47.gh-issue-120600.TJdf0w.rst b/Misc/NEWS.d/next/C API/2024-06-16-22-58-47.gh-issue-120600.TJdf0w.rst
new file mode 100644
index 0000000..12ffd9b
--- /dev/null
+++ b/Misc/NEWS.d/next/C API/2024-06-16-22-58-47.gh-issue-120600.TJdf0w.rst
@@ -0,0 +1,2 @@
+In the limited C API 3.14 and newer, :c:func:`Py_TYPE` is now implemented as an
+opaque function call to hide implementation details. Patch by Victor Stinner.