diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2023-07-11 20:04:12 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-11 20:04:12 (GMT) |
commit | 4bf43710d1e1f19cc46b116b5d8524f6c75dabfa (patch) | |
tree | f005fe94ab083da1f9a21485f51373efa7cf8008 /Misc/stable_abi.toml | |
parent | b444bfb0a325dea8c29f7b1828233b00fbf4a1cb (diff) | |
download | cpython-4bf43710d1e1f19cc46b116b5d8524f6c75dabfa.zip cpython-4bf43710d1e1f19cc46b116b5d8524f6c75dabfa.tar.gz cpython-4bf43710d1e1f19cc46b116b5d8524f6c75dabfa.tar.bz2 |
gh-106307: C API: Add PyMapping_GetOptionalItem() function (GH-106308)
Also add PyMapping_GetOptionalItemString() function.
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 1f6519c..8ea8fde 100644 --- a/Misc/stable_abi.toml +++ b/Misc/stable_abi.toml @@ -2440,3 +2440,7 @@ added = '3.13' [function.PyObject_GetOptionalAttrString] added = '3.13' +[function.PyMapping_GetOptionalItem] + added = '3.13' +[function.PyMapping_GetOptionalItemString] + added = '3.13' |