diff options
author | Victor Stinner <vstinner@python.org> | 2023-11-03 17:18:57 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-03 17:18:57 (GMT) |
commit | 20cfab903db70cf952128bc6b606e3ec4a216498 (patch) | |
tree | dfed10d60f9b45ebc0cf52c2351859a328371e53 /Misc/stable_abi.toml | |
parent | e0afed7e276b6611a2142ec70a0440298d528305 (diff) | |
download | cpython-20cfab903db70cf952128bc6b606e3ec4a216498.zip cpython-20cfab903db70cf952128bc6b606e3ec4a216498.tar.gz cpython-20cfab903db70cf952128bc6b606e3ec4a216498.tar.bz2 |
gh-111506: Implement Py_SET_REFCNT() as opaque function in limited C API (#111508)
In the limited C API version 3.13, Py_SET_REFCNT() function is now
implemented as an opaque function call.
Add _Py_SetRefcnt() to the stable ABI.
Diffstat (limited to 'Misc/stable_abi.toml')
-rw-r--r-- | Misc/stable_abi.toml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/stable_abi.toml b/Misc/stable_abi.toml index 0601de2..b55bb59 100644 --- a/Misc/stable_abi.toml +++ b/Misc/stable_abi.toml @@ -2480,3 +2480,6 @@ added = '3.13' [function.PyUnicode_AsUTF8] added = '3.13' +[function._Py_SetRefcnt] + added = '3.13' + abi_only = true |