diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2023-07-11 19:13:27 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-11 19:13:27 (GMT) |
commit | 579aa89e68a6607398317a50586af781981e89fb (patch) | |
tree | 9f12badb2781f6af3fcc73ef65a940e885b5683a /Misc/stable_abi.toml | |
parent | cabd6e8a107127ff02f0b514148f648fb2472a58 (diff) | |
download | cpython-579aa89e68a6607398317a50586af781981e89fb.zip cpython-579aa89e68a6607398317a50586af781981e89fb.tar.gz cpython-579aa89e68a6607398317a50586af781981e89fb.tar.bz2 |
gh-106521: Add PyObject_GetOptionalAttr() function (GH-106522)
It is a new name of former _PyObject_LookupAttr().
Add also PyObject_GetOptionalAttrString().
Diffstat (limited to 'Misc/stable_abi.toml')
-rw-r--r-- | Misc/stable_abi.toml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/stable_abi.toml b/Misc/stable_abi.toml index c61fedf..1f6519c 100644 --- a/Misc/stable_abi.toml +++ b/Misc/stable_abi.toml @@ -2436,3 +2436,7 @@ added = '3.13' [function.PyObject_DelAttrString] added = '3.13' +[function.PyObject_GetOptionalAttr] + added = '3.13' +[function.PyObject_GetOptionalAttrString] + added = '3.13' |