summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorCarl Meyer <carl@oddbird.net>2022-10-21 13:41:51 (GMT)
committerGitHub <noreply@github.com>2022-10-21 13:41:51 (GMT)
commit82ccbf69a842db25d8117f1c41b47aa5b4ed96ab (patch)
tree3a8bdfc3eb837106664433c2e385276fccf64c06 /Misc
parent8367ca136ed7616cb1f71bd9f1ec98dbcfd35d98 (diff)
downloadcpython-82ccbf69a842db25d8117f1c41b47aa5b4ed96ab.zip
cpython-82ccbf69a842db25d8117f1c41b47aa5b4ed96ab.tar.gz
cpython-82ccbf69a842db25d8117f1c41b47aa5b4ed96ab.tar.bz2
gh-91051: allow setting a callback hook on PyType_Modified (GH-97875)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/C API/2022-10-05-10-43-32.gh-issue-91051.ODDRsQ.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/C API/2022-10-05-10-43-32.gh-issue-91051.ODDRsQ.rst b/Misc/NEWS.d/next/C API/2022-10-05-10-43-32.gh-issue-91051.ODDRsQ.rst
new file mode 100644
index 0000000..c18e2d6
--- /dev/null
+++ b/Misc/NEWS.d/next/C API/2022-10-05-10-43-32.gh-issue-91051.ODDRsQ.rst
@@ -0,0 +1,2 @@
+Add :c:func:`PyType_Watch` and related APIs to allow callbacks on
+:c:func:`PyType_Modified`.