summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next
diff options
context:
space:
mode:
authorneonene <53406459+neonene@users.noreply.github.com>2024-09-18 07:18:19 (GMT)
committerGitHub <noreply@github.com>2024-09-18 07:18:19 (GMT)
commit646f16bdeed6ebe1069e1d64886fbaa26edac75c (patch)
tree44baf199481af36108124d0a5015a28816041b9d /Misc/NEWS.d/next
parent79a74102362996bbd4ff5d410a0d57d43c236da4 (diff)
downloadcpython-646f16bdeed6ebe1069e1d64886fbaa26edac75c.zip
cpython-646f16bdeed6ebe1069e1d64886fbaa26edac75c.tar.gz
cpython-646f16bdeed6ebe1069e1d64886fbaa26edac75c.tar.bz2
gh-124153: Implement `PyType_GetBaseByToken()` and `Py_tp_token` slot (GH-124163)
Diffstat (limited to 'Misc/NEWS.d/next')
-rw-r--r--Misc/NEWS.d/next/C_API/2024-09-17-05-23-35.gh-issue-124153.L8TWmx.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/C_API/2024-09-17-05-23-35.gh-issue-124153.L8TWmx.rst b/Misc/NEWS.d/next/C_API/2024-09-17-05-23-35.gh-issue-124153.L8TWmx.rst
new file mode 100644
index 0000000..b8c0b46
--- /dev/null
+++ b/Misc/NEWS.d/next/C_API/2024-09-17-05-23-35.gh-issue-124153.L8TWmx.rst
@@ -0,0 +1,2 @@
+Add :c:func:`PyType_GetBaseByToken` and :c:data:`Py_tp_token` slot for easier
+type checking, related to :pep:`489` and :pep:`630`.