summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next/C API/2023-06-13-14-24-55.gh-issue-105227.HDL9aF.rst
diff options
context:
space:
mode:
Diffstat (limited to 'Misc/NEWS.d/next/C API/2023-06-13-14-24-55.gh-issue-105227.HDL9aF.rst')
-rw-r--r--Misc/NEWS.d/next/C API/2023-06-13-14-24-55.gh-issue-105227.HDL9aF.rst5
1 files changed, 0 insertions, 5 deletions
diff --git a/Misc/NEWS.d/next/C API/2023-06-13-14-24-55.gh-issue-105227.HDL9aF.rst b/Misc/NEWS.d/next/C API/2023-06-13-14-24-55.gh-issue-105227.HDL9aF.rst
deleted file mode 100644
index 8466636..0000000
--- a/Misc/NEWS.d/next/C API/2023-06-13-14-24-55.gh-issue-105227.HDL9aF.rst
+++ /dev/null
@@ -1,5 +0,0 @@
-The new :c:func:`PyType_GetDict` provides the dictionary for the given type
-object that is normally exposed by ``cls.__dict__``. Normally it's
-sufficient to use :c:member:`~PyTypeObject.tp_dict`, but for the static
-builtin types :c:member:`!tp_dict` is now always ``NULL``. :c:func:`!PyType_GetDict()`
-provides the correct dict object instead.