diff options
author | Victor Stinner <vstinner@python.org> | 2023-06-21 09:40:09 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-21 09:40:09 (GMT) |
commit | 9c44656febdcf72583e192ea4530fcfb0936c309 (patch) | |
tree | 57fc76b2d09c68541c2f6da186494768d52c6502 /Misc/stable_abi.toml | |
parent | 4d140e5e067d3315e163c0f1ac2f80c05ec790c6 (diff) | |
download | cpython-9c44656febdcf72583e192ea4530fcfb0936c309.zip cpython-9c44656febdcf72583e192ea4530fcfb0936c309.tar.gz cpython-9c44656febdcf72583e192ea4530fcfb0936c309.tar.bz2 |
gh-105927: Add PyWeakref_GetRef() function (#105932)
Add tests on PyWeakref_NewRef(), PyWeakref_GetObject(),
PyWeakref_GET_OBJECT() and PyWeakref_GetRef().
Diffstat (limited to 'Misc/stable_abi.toml')
-rw-r--r-- | Misc/stable_abi.toml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/stable_abi.toml b/Misc/stable_abi.toml index 7025ed4..bc7259f 100644 --- a/Misc/stable_abi.toml +++ b/Misc/stable_abi.toml @@ -2430,3 +2430,5 @@ added = '3.12' [function.PyImport_AddModuleRef] added = '3.13' +[function.PyWeakref_GetRef] + added = '3.13' |