diff options
author | Victor Stinner <vstinner@python.org> | 2024-03-25 16:32:20 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-25 16:32:20 (GMT) |
commit | 507896d97dcff2d7999efa264b29d9003c525c49 (patch) | |
tree | f46d689010f34344f60e86adac8e9fdb33867e3d /Doc | |
parent | 0c1a42cf9c8cd0d4534d5c1d58f118ce7c5c446e (diff) | |
download | cpython-507896d97dcff2d7999efa264b29d9003c525c49.zip cpython-507896d97dcff2d7999efa264b29d9003c525c49.tar.gz cpython-507896d97dcff2d7999efa264b29d9003c525c49.tar.bz2 |
gh-116936: Add PyType_GetModuleByDef() to the limited C API (#116937)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/data/stable_abi.dat | 1 | ||||
-rw-r--r-- | Doc/whatsnew/3.13.rst | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/Doc/data/stable_abi.dat b/Doc/data/stable_abi.dat index 565f134..2763bea 100644 --- a/Doc/data/stable_abi.dat +++ b/Doc/data/stable_abi.dat @@ -679,6 +679,7 @@ function,PyType_GenericNew,3.2,, function,PyType_GetFlags,3.2,, function,PyType_GetFullyQualifiedName,3.13,, function,PyType_GetModule,3.10,, +function,PyType_GetModuleByDef,3.13,, function,PyType_GetModuleName,3.13,, function,PyType_GetModuleState,3.10,, function,PyType_GetName,3.11,, diff --git a/Doc/whatsnew/3.13.rst b/Doc/whatsnew/3.13.rst index aba672d..e6234bf 100644 --- a/Doc/whatsnew/3.13.rst +++ b/Doc/whatsnew/3.13.rst @@ -1742,6 +1742,9 @@ New Features :term:`strong reference` to the constant zero. (Contributed by Victor Stinner in :gh:`115754`.) +* Add :c:func:`PyType_GetModuleByDef` to the limited C API + (Contributed by Victor Stinner in :gh:`116936`.) + Porting to Python 3.13 ---------------------- |